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 7793dec commit bf6d3c4Copy full SHA for bf6d3c4
.travis.yml
@@ -135,9 +135,13 @@ install:
135
# - cd ..
136
137
script:
138
+ # output something every <10 minutes
139
+ - while sleep 9m; do echo "=====[ $SECONDS seconds still running ]====="; done &
140
- cd src
- - ../run_long.sh python -m cibuildwheel --output-dir ../wheelhouse
141
+ - python -m cibuildwheel --output-dir ../wheelhouse
142
- cd ..
143
+ # terminate background sleep & print loop
144
+ - kill %1
145
146
deploy:
147
- provider: script
run_long.sh
0 commit comments