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:
authorZoltan Varga <vargaz@gmail.com>2019-09-19 13:58:31 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-09-19 13:58:31 +0300
commita3d05c2f884da5c8f2eb8f688ed355ef5b0681ab (patch)
tree0f2f05998b7f5c4070f15d291d4e04c2a13ce317 /scripts/ci/run-test-mac-sdk.sh
parent8d23dc71b6d30c799e43e359ad622618d684b7a5 (diff)
[ci] Precompile runtime tests on the mac-sdk lane before running them with llvm. (#16916)
Diffstat (limited to 'scripts/ci/run-test-mac-sdk.sh')
-rwxr-xr-xscripts/ci/run-test-mac-sdk.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/ci/run-test-mac-sdk.sh b/scripts/ci/run-test-mac-sdk.sh
index 7229b118d86..3b73e6b333e 100755
--- a/scripts/ci/run-test-mac-sdk.sh
+++ b/scripts/ci/run-test-mac-sdk.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e
+# -*- mode: shell-script; indent-tabs-mode: nil; -*-
${TESTCMD} --label=bockbuild --timeout=300m --fatal ${MONO_REPO_ROOT}/scripts/mac-sdk-package.sh
@@ -15,8 +16,9 @@ then echo "Running only msbuild tests"
else
# Bundled LLVM
cd ${MONO_REPO_ROOT}/external/bockbuild/builds/mono
- ${TESTCMD} --label="runtime-tests-llvm" --timeout=240m make -C mono/tests -k test-wrench MONO_ENV_OPTIONS=--llvm V=1 M=1
- ${TESTCMD} --label="corlib-tests-llvm" --timeout=60m make -C mcs/class/corlib run-test PLATFORM_TEST_HARNESS_EXCLUDES="NotOnMac LLVMNotWorking" MONO_ENV_OPTIONS=--llvm
+ ${TESTCMD} --label="compile-runtime-tests" --timeout=240m make -j ${CI_CPU_COUNT} -C mono/tests -k test V=1 M=1
+ ${TESTCMD} --label="runtime-tests-llvm" --timeout=240m make -j ${CI_CPU_COUNT} -C mono/tests -k test-wrench MONO_ENV_OPTIONS=--llvm V=1 M=1
+ ${TESTCMD} --label="corlib-tests-llvm" --timeout=60m make -j ${CI_CPU_COUNT} -C mcs/class/corlib run-test PLATFORM_TEST_HARNESS_EXCLUDES="NotOnMac LLVMNotWorking" MONO_ENV_OPTIONS=--llvm
# Bundled libgdiplus
${TESTCMD} --label="System.Drawing" --timeout=60m make -C mcs/class/System.Drawing run-test