[ci] Bump timeout in runtime test step
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Tue, 31 May 2016 05:04:27 +0000 (07:04 +0200)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Tue, 31 May 2016 05:05:51 +0000 (07:05 +0200)
We were seeing timeouts in the runtime step if two builds happen to be scheduled
at the exact same time on the ARM workers on Jenkins, causing increased load and
longer test times. They aborted the runtime step right before it'd finish.

Bump the timeout a bit to avoid this.

scripts/ci/run-jenkins.sh

index e7df3e218c59d227b575b95128c707e9200a2ac4..f6d49c64944f4c1ac6027ff62c8cf19a94238f93 100755 (executable)
@@ -37,7 +37,7 @@ if [[ -n "${ghprbPullId}" ]] && [[ ${label} == w* ]];
     # we don't run the test suite on Windows PRs, we just ensure the build succeeds, so end here
 fi
 ${TESTCMD} --label=mini --timeout=5m make -w -C mono/mini -k check
-${TESTCMD} --label=runtime --timeout=140m make -w -C mono/tests -k test-wrench V=1 CI=1
+${TESTCMD} --label=runtime --timeout=160m make -w -C mono/tests -k test-wrench V=1 CI=1
 ${TESTCMD} --label=corlib --timeout=30m make -w -C mcs/class/corlib run-test
 ${TESTCMD} --label=verify --timeout=15m make -w -C runtime mcs-compileall
 ${TESTCMD} --label=profiler --timeout=30m make -w -C mono/profiler -k check