Skip to content

Commit 112b7ee

Browse files
committed
new attempt at preventing travis timeouts
1 parent 495574f commit 112b7ee

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.travis-ci.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ opam install coq-mathcomp-fingroup coq-mathcomp-algebra StructTact InfSeqExt ver
1414

1515
case $MODE in
1616
analytics)
17-
travis_wait 30 ./script/analytics.sh
17+
./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
1824
;;
1925
tree-test)
2026
opam install verdi-runtime ounit.2.0.0 uuidm.0.9.6 --yes --verbose

0 commit comments

Comments
 (0)