Skip to content

Commit

Permalink
build: do not trace deploy step
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed Oct 15, 2019
1 parent f4ea525 commit 63a4cd6
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,28 +107,28 @@ 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
else
./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

0 comments on commit 63a4cd6

Please sign in to comment.