From: Alexander Köplinger Date: Fri, 28 Jul 2017 20:01:13 +0000 (+0200) Subject: [ci] Compile the class lib tests in a separate step X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=a71c1c7196c272486507a96a784e0f0158acac35;p=mono.git [ci] Compile the class lib tests in a separate step Compiling in parallel via -j should also be faster. We had this on Wrench but it didn't make it over to Jenkins. --- diff --git a/scripts/ci/run-test-default.sh b/scripts/ci/run-test-default.sh index 1529f2cf391..acf299859cc 100755 --- a/scripts/ci/run-test-default.sh +++ b/scripts/ci/run-test-default.sh @@ -5,6 +5,7 @@ if [[ ${label} == w* ]] then ${TESTCMD} --label=aot-test --skip; else ${TESTCMD} --label=aot-test --timeout=30m make -w -C mono/tests -j4 -k test-aot fi +${TESTCMD} --label=compile-bcl-tests --timeout=40m make -i -w -C runtime -j4 test ${TESTCMD} --label=compile-runtime-tests --timeout=40m make -w -C mono/tests -j4 tests ${TESTCMD} --label=runtime --timeout=160m make -w -C mono/tests -k test-wrench V=1 CI=1 CI_PR=${ghprbPullId} ${TESTCMD} --label=runtime-unit-tests --timeout=5m make -w -C mono/unit-tests -k check