Skip to content

Commit 6f9b3ca

Browse files
authored
Merge pull request #2800 from phansch/no_deploy_in_integration_tests
Don't run deploy script in integration tests
2 parents b903d1c + 2999be6 commit 6f9b3ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ after_success: |
6161
#!/bin/bash
6262
if [ $(uname) == Linux ]; then
6363
set -ex
64-
./.github/deploy.sh
64+
if [ -z ${INTEGRATION} ]; then
65+
./.github/deploy.sh
66+
else
67+
echo "Not deploying, because we're in an integration test run"
68+
fi
6569
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
6670
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
6771
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&

0 commit comments

Comments
 (0)