2020-07-28 06:11:30 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
### Bash Environment Setup
|
|
|
|
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
|
|
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
|
|
|
|
# set -o xtrace
|
|
|
|
set -o errexit
|
|
|
|
set -o errtrace
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
IFS=$'\n'
|
|
|
|
|
2020-08-18 15:00:00 -04:00
|
|
|
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
|
|
|
cd "$REPO_DIR"
|
2020-07-28 06:17:54 -04:00
|
|
|
|
2020-10-10 16:44:56 -04:00
|
|
|
|
2021-01-12 05:56:00 -05:00
|
|
|
# Run the linters and tests
|
|
|
|
# ./bin/lint.sh
|
|
|
|
# ./bin/test.sh
|
2020-10-10 16:44:56 -04:00
|
|
|
|
2021-01-12 05:56:00 -05:00
|
|
|
# Run all the build scripts
|
|
|
|
./bin/build_git.sh
|
2020-10-10 16:44:56 -04:00
|
|
|
./bin/build_docs.sh
|
|
|
|
./bin/build_pip.sh
|
2020-11-23 16:52:15 -05:00
|
|
|
./bin/build_deb.sh
|
2021-01-12 05:56:00 -05:00
|
|
|
./bin/build_brew.sh
|
2020-10-10 16:44:56 -04:00
|
|
|
./bin/build_docker.sh
|
2020-07-28 06:11:30 -04:00
|
|
|
|
2021-01-12 05:56:00 -05:00
|
|
|
# Push relase to public repositories
|
|
|
|
./bin/release_git.sh
|
|
|
|
./bin/release_docs.sh
|
|
|
|
./bin/release_pip.sh
|
|
|
|
./bin/release_deb.sh
|
|
|
|
./bin/release_brew.sh
|
|
|
|
./bin/release_docker.sh
|
2020-10-10 16:44:56 -04:00
|
|
|
|
2021-01-12 05:56:00 -05:00
|
|
|
VERSION="$(jq -r '.version' < "$REPO_DIR/package.json")"
|
|
|
|
echo "[√] Done. Published version v$VERSION"
|