110 lines
No EOL
2.4 KiB
Bash
Executable file
110 lines
No EOL
2.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
|
cd "$ROOT"
|
|
BUILD_DIR="$ROOT/build"
|
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
ICON="$BUILD_DIR/icon.icns"
|
|
else
|
|
ICON="$BUILD_DIR/icons/lbry48.png"
|
|
fi
|
|
|
|
FULL_BUILD="${FULL_BUILD:-false}"
|
|
if [ -n "${TEAMCITY_VERSION:-}" -o -n "${APPVEYOR:-}" ]; then
|
|
FULL_BUILD="true"
|
|
fi
|
|
|
|
if [ "$FULL_BUILD" == "true" ]; then
|
|
# install dependencies
|
|
$BUILD_DIR/prebuild.sh
|
|
|
|
VENV="$BUILD_DIR/venv"
|
|
if [ -d "$VENV" ]; then
|
|
rm -rf "$VENV"
|
|
fi
|
|
virtualenv "$VENV"
|
|
set +u
|
|
source "$VENV/bin/activate"
|
|
set -u
|
|
pip install -r "$BUILD_DIR/requirements.txt"
|
|
python "$BUILD_DIR/set_version.py"
|
|
python "$BUILD_DIR/set_build.py"
|
|
fi
|
|
|
|
[ -d "$ROOT/dist" ] && rm -rf "$ROOT/dist"
|
|
mkdir -p "$ROOT/dist"
|
|
[ -d "$ROOT/app/dist" ] && rm -rf "$ROOT/app/dist"
|
|
mkdir -p "$ROOT/app/dist"
|
|
|
|
npm install
|
|
|
|
|
|
|
|
############
|
|
# UI #
|
|
############
|
|
|
|
(
|
|
cd "$ROOT/ui"
|
|
npm install
|
|
node_modules/.bin/node-sass --output dist/css --sourcemap=none scss/
|
|
node_modules/.bin/webpack
|
|
cp -r dist/* "$ROOT/app/dist/"
|
|
)
|
|
|
|
|
|
|
|
####################
|
|
# daemon and cli #
|
|
####################
|
|
|
|
(
|
|
cd "$ROOT/daemon"
|
|
|
|
# copy requirements from lbry, but remove lbryum (we'll add it back in below)
|
|
grep -v lbryum "$ROOT/lbry/requirements.txt" > requirements.txt
|
|
# for electron, we install lbryum and lbry using submodules
|
|
echo "../lbryum" >> requirements.txt
|
|
echo "../lbry" >> requirements.txt
|
|
# also add pyinstaller
|
|
echo "PyInstaller==3.2.1" >> requirements.txt
|
|
|
|
pip install -r requirements.txt
|
|
pyinstaller -y daemon.onefile.spec
|
|
pyinstaller -y cli.onefile.spec
|
|
mv dist/lbrynet-daemon dist/lbrynet-cli "$ROOT/app/dist/"
|
|
)
|
|
python "$BUILD_DIR/zip_daemon.py"
|
|
|
|
|
|
###################
|
|
# Build the app #
|
|
###################
|
|
|
|
(
|
|
cd "$ROOT/app"
|
|
npm install
|
|
)
|
|
|
|
if [ "$FULL_BUILD" == "true" ]; then
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
security unlock-keychain -p ${KEYCHAIN_PASSWORD} osx-build.keychain
|
|
fi
|
|
|
|
node_modules/.bin/build -p never
|
|
|
|
# electron-build has a publish feature, but I had a hard time getting
|
|
# it to reliably work and it also seemed difficult to configure. Not proud of
|
|
# this, but it seemed better to write my own.
|
|
python "$BUILD_DIR/release_on_tag.py"
|
|
|
|
deactivate
|
|
|
|
echo 'Build and packaging complete.'
|
|
else
|
|
echo 'Build complete. Run `./node_modules/.bin/electron app` to launch the app'
|
|
fi |