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:
authorKenneth Pouncey <kjpou@pt.lu>2019-10-16 05:59:55 +0300
committerGitHub <noreply@github.com>2019-10-16 05:59:55 +0300
commit2b4790a1f3be0ba846d42e128a3b9a4c21c276b9 (patch)
tree280b57a010a2b59ddf976932b692f3a9eea1d3d1 /scripts/ci
parent2ddcf8cf161f8827a6ce51a3b87c6a289563c7b6 (diff)
[wasm][tests] WASM Safari browser tests (#16816)
* Add support for tests via safari browser * Run safari browser tests on CI for Mac lanes * Update to fix syntax error using UNAME to `if [[ ${CI_TAGS} == *'osx-amd64'* ]];` * Fix syntax error with `if`
Diffstat (limited to 'scripts/ci')
-rwxr-xr-xscripts/ci/run-jenkins.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index d84723681fd..2712cddaf28 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -359,6 +359,9 @@ if [[ ${CI_TAGS} == *'webassembly'* ]] || [[ ${CI_TAGS} == *'wasm'* ]];
#${TESTCMD} --label=debugger --timeout=20m $gnumake -C sdks/wasm test-debugger
${TESTCMD} --label=browser --timeout=20m $gnumake -C sdks/wasm run-browser-tests
#${TESTCMD} --label=browser-threads --timeout=20m $gnumake -C sdks/wasm run-browser-threads-tests
+ if [[ ${CI_TAGS} == *'osx-amd64'* ]]; then
+ ${TESTCMD} --label=browser-safari --timeout=20m $gnumake -C sdks/wasm run-browser-safari-tests
+ fi
${TESTCMD} --label=aot-mini --timeout=20m $gnumake -j ${CI_CPU_COUNT} -C sdks/wasm run-aot-mini
${TESTCMD} --label=build-aot-all --timeout=20m $gnumake -j ${CI_CPU_COUNT} -C sdks/wasm build-aot-all
for suite in ${aot_test_suites}; do ${TESTCMD} --label=run-aot-${suite} --timeout=10m $gnumake -C sdks/wasm run-aot-${suite}; done