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 495574f commit 112b7eeCopy full SHA for 112b7ee
.travis-ci.sh
@@ -14,7 +14,13 @@ opam install coq-mathcomp-fingroup coq-mathcomp-algebra StructTact InfSeqExt ver
14
15
case $MODE in
16
analytics)
17
- travis_wait 30 ./script/analytics.sh
+ ./script/analytics.sh &
18
+ # Output to the screen every 9 minutes to prevent a travis timeout
19
+ export PID=$!
20
+ while [[ `ps -p $PID | tail -n +2` ]]; do
21
+ echo 'proofalyzing...'
22
+ sleep 540
23
+ done
24
;;
25
tree-test)
26
opam install verdi-runtime ounit.2.0.0 uuidm.0.9.6 --yes --verbose
0 commit comments