solidity/scripts/docker_deploy.sh

22 lines
750 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2017-02-13 10:22:07 +00:00
set -e
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
2017-06-30 10:30:57 +00:00
version=$($(dirname "$0")/get_version.sh)
2017-02-13 11:28:39 +00:00
if [ "$TRAVIS_BRANCH" = "develop" ]
then
docker tag ethereum/solc:build ethereum/solc:nightly;
docker tag ethereum/solc:build ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT"
docker push ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT";
docker push ethereum/solc:nightly;
elif [ "$TRAVIS_TAG" = v"$version" ]
then
docker tag ethereum/solc:build ethereum/solc:stable;
2017-02-13 11:28:39 +00:00
docker tag ethereum/solc:build ethereum/solc:"$version";
docker push ethereum/solc:stable;
2017-02-13 11:28:39 +00:00
docker push ethereum/solc:"$version";
else
echo "Not publishing docker image from branch $TRAVIS_BRANCH or tag $TRAVIS_TAG"
2017-02-10 13:07:46 +00:00
fi