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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-02-07 00:36:38 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2020-02-07 00:39:13 +0300
commit0686e1435b3b59936e650e7fde6340a186488ec4 (patch)
tree9328178163431b2721526b6e8a95140ef8d95c46
parent5ef6ad0ef7279120900f8ef9fc91070ff913f23e (diff)
Skip WebAssembly build in sdks archive build on non-master branchesmono-6.10.0.68
WebAssembly doesn't use our usual release branches yet. (cherry picked from commit a40e1ae681db8dad3923fcfe48c123477f38d440)
-rw-r--r--scripts/ci/pipeline/sdks-archive.groovy4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/pipeline/sdks-archive.groovy b/scripts/ci/pipeline/sdks-archive.groovy
index 45294337906..7567e22ef3d 100644
--- a/scripts/ci/pipeline/sdks-archive.groovy
+++ b/scripts/ci/pipeline/sdks-archive.groovy
@@ -65,6 +65,10 @@ parallel (
}
},
"WASM Linux": {
+ if (monoBranch != 'master') {
+ echo "Skipping WASM build on non-master branch."
+ return
+ }
throttle(['provisions-wasm-toolchain']) {
node ("ubuntu-1804-amd64") {
archive ("wasm", "release", "Linux", "ubuntu-1804-amd64-preview", "npm dotnet-sdk-2.1 nuget openjdk-8-jre python3-pip")