From 0686e1435b3b59936e650e7fde6340a186488ec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Ko=CC=88plinger?= Date: Thu, 6 Feb 2020 22:36:38 +0100 Subject: Skip WebAssembly build in sdks archive build on non-master branches WebAssembly doesn't use our usual release branches yet. (cherry picked from commit a40e1ae681db8dad3923fcfe48c123477f38d440) --- scripts/ci/pipeline/sdks-archive.groovy | 4 ++++ 1 file changed, 4 insertions(+) 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") -- cgit v1.2.3