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>2018-09-26 12:29:00 +0300
committerGitHub <noreply@github.com>2018-09-26 12:29:00 +0300
commit352639f75a389150a1562ebf72a7d46f4acc475e (patch)
tree19e9dbd418fe5ce27b7afadb2247d9eed5d0129c /scripts
parent7e4159b5682f28cd4556b850b9038eb9ab66e868 (diff)
[wasm] AOT fixes (#10706)
* [wasm] Fix linker changes. * Revert "[wasm] Enable the mini test suite under AOT. (#10670)" This reverts commit 9cb832ff2a3c09058b8c220bbd021f1177c2b7aa. Revert this, it doesn't work yet. * [wasm] Run AOT tests on CI. * Fix the CI label. * [wasm] Disable the aot test on CI, it doesn't yet run on linux. * [wasm] Fix the computation of code_start/code_end for wasm. * [llvm] Avoid passing a dummy extra args to wrappers which don't need it. * [wasm] Enable gshared. * [llvm] Fix the build. * [llvm] Avoid passing a dummy arg to string:memcpy/bzero. * [wasm] Enable exception catching. * [wasm] Enable explicit division by zero checks. * [wasm] Patch emscripten with the patch from https://github.com/kripken/emscripten/pull/7182. * [wasm] Use '.' instead of source in the ninja build scripts since they might be ran with sh/dash instead of bash. * [wasm] Reenable check-aot on CI. * [wasm] Run emcc using bash -c since the emsdk_env.sh scripts contains bash-ishms. * [wasm] Don't error out if the emscripten patch is already applied. * [wasm] Fix do-aot-sample. * [wasm] Disable AOT test on CI, it still doesn't work. * [llvm] Add support for OP_RCNEQ. * [jit] Make some tests in builtin-types.cs static. * [wasm] Fix the return value of mono_wasm_exec_regression (). * [wasm] Make aot-sample uses mini_tests.dll.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index 3fd9c212dee..6323603cbaa 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -195,6 +195,7 @@ if [[ ${CI_TAGS} == *'webassembly'* ]];
${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=check-aot --timeout=60m make -C sdks/wasm check-aot
${TESTCMD} --label=package --timeout=60m make -C sdks/wasm package
exit 0
fi