27 lines
655 B
Bash
27 lines
655 B
Bash
|
#!/usr/bin/env bash
|
||
|
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
|
||
|
cd "$parent_path" || exit
|
||
|
|
||
|
./lint.sh
|
||
|
|
||
|
if [ 1 -eq "$#" ]
|
||
|
then
|
||
|
./version_bump.sh "$1"
|
||
|
else
|
||
|
echo "No version bump"
|
||
|
git push
|
||
|
git tag --delete latest
|
||
|
git tag latest
|
||
|
git push --delete origin latest
|
||
|
git push --tags
|
||
|
fi
|
||
|
|
||
|
cd "$parent_path/docker/app" || exit
|
||
|
docker build --tag brewman:latest .
|
||
|
cd "$parent_path/docker" || exit
|
||
|
docker save brewman:latest | bzip2 | pv | ssh tanshu@knox.tanshu.com 'bunzip2 | sudo docker load'
|
||
|
ansible-playbook playbook-exp.yml
|
||
|
ansible-playbook playbook-hops.yml
|
||
|
ansible-playbook playbook-acc.yml
|
||
|
ansible-playbook playbook-mhl.yml
|