We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b903d1c + 2999be6 commit 6f9b3caCopy full SHA for 6f9b3ca
.travis.yml
@@ -61,7 +61,11 @@ after_success: |
61
#!/bin/bash
62
if [ $(uname) == Linux ]; then
63
set -ex
64
- ./.github/deploy.sh
+ if [ -z ${INTEGRATION} ]; then
65
+ ./.github/deploy.sh
66
+ else
67
+ echo "Not deploying, because we're in an integration test run"
68
+ fi
69
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
70
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
71
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
0 commit comments