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:
authorRodrigo Kumpera <kumpera@users.noreply.github.com>2018-06-27 11:26:47 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-06-27 11:26:47 +0300
commitc2f64376281fa7b13ae717e06c3e3f4abd153699 (patch)
tree8aaa1878c4b8454a7ed3b855792ab7cd6c9745ef /scripts
parent3eabde79db1d7997262f159848c2453d308dfc5a (diff)
[wasm] Small set of changes that are wasm specific. (#9305)
* [wasm] Add helper target to update the runtimes. * [wasm] Reenable tests that previously crashed due to JS engine issues. * [wasm] Update jsvu 1.3.1 so we get jsc on linux. Fix uname magic on OSX.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index e7625d2f69b..394c3fe7b49 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -131,13 +131,15 @@ if [[ ${CI_TAGS} == *'webassembly'* ]];
${TESTCMD} --label=ch-mini-test --timeout=60m make -C sdks/wasm run-ch-mini
${TESTCMD} --label=v8-mini-test --timeout=60m make -C sdks/wasm run-v8-mini
${TESTCMD} --label=sm-mini-test --timeout=60m make -C sdks/wasm run-sm-mini
+ ${TESTCMD} --label=jsc-mini-test --timeout=60m make -C sdks/wasm run-jsc-mini
#The following tests are not passing yet, so enabling them would make us perma-red
#${TESTCMD} --label=mini-corlib --timeout=60m make -C sdks/wasm run-all-corlib
#${TESTCMD} --label=mini-system --timeout=60m make -C sdks/wasm run-all-system
# Chakra crashes with System.Core. See https://github.com/mono/mono/issues/8345
- # ${TESTCMD} --label=ch-system-core --timeout=60m make -C sdks/wasm run-ch-system-core
+ ${TESTCMD} --label=ch-system-core --timeout=60m make -C sdks/wasm run-ch-system-core
${TESTCMD} --label=v8-system-core --timeout=60m make -C sdks/wasm run-v8-system-core
${TESTCMD} --label=sm-system-core --timeout=60m make -C sdks/wasm run-sm-system-core
+ ${TESTCMD} --label=jsc-system-core --timeout=60m make -C sdks/wasm run-jsc-system-core
${TESTCMD} --label=package --timeout=60m make -C sdks/wasm package
exit 0
fi