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:
authorLarry Ewing <lewing@microsoft.com>2020-04-11 12:23:10 +0300
committerGitHub <noreply@github.com>2020-04-11 12:23:10 +0300
commit5a45ab66302c4fb952fa1a17837cc616cf9a6cbe (patch)
tree2c25f423272a87336099d81bfdc40eca931af619 /scripts
parentf9faa296b805c7713e03ee31d138d1cd5006e023 (diff)
[wasm][ci] Always build and package wasm (#19508)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index d15fde384d7..c5e12b74be5 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -345,8 +345,10 @@ if [[ ${CI_TAGS} == *'webassembly'* ]] || [[ ${CI_TAGS} == *'wasm'* ]];
${TESTCMD} --label=build --timeout=180m --fatal $gnumake -j ${CI_CPU_COUNT} --output-sync=recurse --trace -C sdks/builds build-wasm NINJA=
${TESTCMD} --label=archive --timeout=180m --fatal $gnumake -j ${CI_CPU_COUNT} --output-sync=recurse --trace -C sdks/builds archive-wasm NINJA=
+ ${TESTCMD} --label=wasm-build --timeout=20m --fatal $gnumake -j ${CI_CPU_COUNT} -C sdks/wasm build
+ ${TESTCMD} --label=package --timeout=20m $gnumake -C sdks/wasm package
+
if [[ ${CI_TAGS} != *'no-tests'* ]]; then
- ${TESTCMD} --label=wasm-build --timeout=20m --fatal $gnumake -j ${CI_CPU_COUNT} -C sdks/wasm build
${TESTCMD} --label=mini --timeout=20m $gnumake -C sdks/wasm run-all-mini
${TESTCMD} --label=v8-corlib --timeout=20m $gnu$gnumake -C sdks/wasm run-v8-corlib
${TESTCMD} --label=mini-system --timeout=60m $gnu$gnumake -C sdks/wasm run-all-System
@@ -367,7 +369,6 @@ if [[ ${CI_TAGS} == *'webassembly'* ]] || [[ ${CI_TAGS} == *'wasm'* ]];
# Requires a net 3.0 sdk
#${TESTCMD} --label=netcore --timeout=20m $gnumake -j ${CI_CPU_COUNT} -C sdks/wasm run-hello-netcore
#${TESTCMD} --label=check-aot --timeout=20m $gnumake -C sdks/wasm check-aot
- ${TESTCMD} --label=package --timeout=20m $gnumake -C sdks/wasm package
fi
exit 0
fi