diff --git a/.travis.yml b/.travis.yml index 51dbb5f4987..2d7d46abca3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,7 +61,11 @@ after_success: | #!/bin/bash if [ $(uname) == Linux ]; then set -ex - ./.github/deploy.sh + if [ -z ${INTEGRATION} ]; then + ./.github/deploy.sh + else + echo "Not deploying, because we're in an integration test run" + fi # trigger rebuild of the clippy-service, to keep it up to date with clippy itself if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&