We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a4cd6 commit 0b39946Copy full SHA for 0b39946
.travis.yml
@@ -91,7 +91,7 @@ matrix:
91
- os: osx
92
- os: windows
93
94
-script:
+before_script:
95
- |
96
if [ "$TRAVIS_BRANCH" == "auto" ] || [ "$TRAVIS_BRANCH" == "try" ]; then
97
pr=$(echo $TRAVIS_COMMIT_MESSAGE | grep -o "#[0-9]*" | head -1 | sed 's/^#//g')
@@ -109,11 +109,14 @@ script:
109
110
rm rust-toolchain
111
./setup-toolchain.sh
112
+ - |
113
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
114
export PATH=$PATH:$(rustc --print sysroot)/bin
115
else
116
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
117
fi
118
+
119
+script:
120
121
if [ -z ${INTEGRATION} ]; then
122
travis_wait 30 ./ci/base-tests.sh && sleep 5
0 commit comments