Disable all deploy except releases.

This commit is contained in:
chriseth 2017-03-17 10:34:35 +01:00
parent 522c062986
commit 33a86ae311

View File

@ -201,23 +201,23 @@ deploy:
# configurations (not for macOS). That is controlled by conditionals within the bash
# scripts because TravisCI doesn't provide much in the way of conditional logic.
- provider: script
script: test $SOLC_EMSCRIPTEN != On || (scripts/release_emscripten.sh)
skip_cleanup: true
on:
branch:
- develop
- release
# This is the deploy target for the dockerfile. If we are pushing into a develop branch, it will be tagged
# as a nightly and appended the commit of the branch it was pushed in. If we are pushing to master it will
# be tagged as "stable" and given the version tag as well.
- provider: script
script: test $SOLC_DOCKER != On || (scripts/docker_deploy.sh)
skip_cleanup: true
on:
branch:
- develop
- release
# - provider: script
# script: test $SOLC_EMSCRIPTEN != On || (scripts/release_emscripten.sh)
# skip_cleanup: true
# on:
# branch:
# - develop
# - release
# # This is the deploy target for the dockerfile. If we are pushing into a develop branch, it will be tagged
# # as a nightly and appended the commit of the branch it was pushed in. If we are pushing to master it will
# # be tagged as "stable" and given the version tag as well.
# - provider: script
# script: test $SOLC_DOCKER != On || (scripts/docker_deploy.sh)
# skip_cleanup: true
# on:
# branch:
# - develop
# - release
# This is the deploy target for the native build (Linux and macOS)
# which generates ZIPs per commit and the source tarball.
#