forked from LBRYCommunity/lbry-sdk
24 lines
750 B
Bash
Executable file
24 lines
750 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Configure the library for a non-production release
|
|
#
|
|
|
|
set -euo pipefail
|
|
set -o xtrace
|
|
|
|
# changes to this script also need to be added to build.ps1 for windows
|
|
add_ui() {
|
|
wget https://s3.amazonaws.com/lbry-ui/development/dist.zip -O dist.zip
|
|
unzip -oq dist.zip -d lbrynet/resources/ui
|
|
wget https://s3.amazonaws.com/lbry-ui/development/data.json -O lbrynet/resources/ui/data.json
|
|
}
|
|
|
|
IS_RC_REGEX="v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+-rc[[:digit:]]+"
|
|
|
|
if [[ -z "$TRAVIS_TAG" ]]; then
|
|
python packaging/append_sha_to_version.py lbrynet/__init__.py "${TRAVIS_COMMIT}"
|
|
add_ui
|
|
elif [[ "$TRAVIS_TAG" =~ $IS_RC_REGEX ]]; then
|
|
# If the tag looks like v0.7.6-rc0 then this is a tagged release candidate.
|
|
add_ui
|
|
fi
|