We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19244e6 commit fbe42a2Copy full SHA for fbe42a2
.travis.yml
@@ -53,10 +53,11 @@ install:
53
- docker buildx inspect --bootstrap --builder builder-manylinux 2>&1 | tee /dev/null
54
55
script: |
56
- BUILD_STATUS=success
57
(while true; do echo "travis_wait"; docker stats --no-stream; free; df -h; sleep 30; done) &
58
WAIT_PID=$!
59
- COMMIT_SHA=${TRAVIS_COMMIT} ./build.sh || BUILD_STATUS=failed
+ disown
+ BUILD_STATUS=success
60
+ COMMIT_SHA=${TRAVIS_COMMIT} ./build.sh 2>&1 || BUILD_STATUS=failed
61
kill -9 ${WAIT_PID}
62
if [ "${BUILD_STATUS}" != "success" ]; then
63
exit 1
0 commit comments