build: do not trace deploy step
This commit is contained in:
parent
f4ea5251cb
commit
63a4cd60cd
1 changed files with 17 additions and 17 deletions
34
.travis.yml
34
.travis.yml
|
|
@ -107,13 +107,13 @@ script:
|
|||
fi
|
||||
fi
|
||||
- |
|
||||
rm rust-toolchain
|
||||
./setup-toolchain.sh
|
||||
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
||||
export PATH=$PATH:$(rustc --print sysroot)/bin
|
||||
else
|
||||
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
|
||||
fi
|
||||
rm rust-toolchain
|
||||
./setup-toolchain.sh
|
||||
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
||||
export PATH=$PATH:$(rustc --print sysroot)/bin
|
||||
else
|
||||
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
|
||||
fi
|
||||
- |
|
||||
if [ -z ${INTEGRATION} ]; then
|
||||
travis_wait 30 ./ci/base-tests.sh && sleep 5
|
||||
|
|
@ -121,14 +121,14 @@ script:
|
|||
./ci/integration-tests.sh && sleep 5
|
||||
fi
|
||||
|
||||
after_success: |
|
||||
#!/bin/bash
|
||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||
set -ex
|
||||
if [ -z ${INTEGRATION} ]; then
|
||||
./.github/deploy.sh
|
||||
else
|
||||
echo "Not deploying, because we're in an integration test run"
|
||||
after_success:
|
||||
- |
|
||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||
set -e
|
||||
if [ -z ${INTEGRATION} ]; then
|
||||
./.github/deploy.sh
|
||||
else
|
||||
echo "Not deploying, because we're in an integration test run"
|
||||
fi
|
||||
set +e
|
||||
fi
|
||||
set +e
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue