diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index eafba71f..df8b4ebb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -188,9 +188,7 @@ deploy: # Both the build and deploy steps for Emscripten are only run within the Ubuntu # 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. - # This is also 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_EMSCRIPTEN == On || scripts/release_emscripten.sh skip_cleanup: true @@ -198,6 +196,9 @@ deploy: 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 |