Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-07-28 23:01:13 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-08-01 01:33:36 +0300
commita71c1c7196c272486507a96a784e0f0158acac35 (patch)
tree3ad37f38492abe40b6a2dd7a9b245635ea92823f /scripts
parent05bd2d2ffa93e2a80cb9bb36b751e01266a0abc9 (diff)
[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.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-default.sh1
1 files changed, 1 insertions, 0 deletions
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