mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
Merge pull request #2800 from phansch/no_deploy_in_integration_tests
Don't run deploy script in integration tests
This commit is contained in:
commit
6f9b3ca346
@ -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" ] &&
|
||||
|
Loading…
Reference in New Issue
Block a user