From a2bec771122cec788f495a64795cca26abc8a17d Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Tue, 8 Feb 2022 17:58:45 -0500 Subject: [PATCH 1/2] Add a new wrapper `runtime-wasm.yml` to be used from azdo Currently, we have `runtime-wasm` in azdo pointing to `runtime-extra-platforms.yml`, which has some scheduled triggers defined. azdo seems to use these for running `runtime-wasm` too. Instead, in azdo use a new `runtime-wasm.yml` for `runtime-wasm` pipeline, so we can explicitly avoid the scheduled triggers. This yml just uses the existing `runtime-extra-platforms-wasm.yml`. --- eng/pipelines/runtime-wasm.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 eng/pipelines/runtime-wasm.yml diff --git a/eng/pipelines/runtime-wasm.yml b/eng/pipelines/runtime-wasm.yml new file mode 100644 index 00000000000000..9ead33295d4101 --- /dev/null +++ b/eng/pipelines/runtime-wasm.yml @@ -0,0 +1,17 @@ +# This is a wrapper yml for `runtime-extra-platforms-wasm.yml`, which +# has all the wasm jobs. This file is essentially so we can have point +# the pipeline in azdo UI to this, and thus avoid any scheduled triggers + +trigger: none + +jobs: + +# +# Evaluate paths +# +- ${{ if eq(variables.dependOnEvaluatePaths, true) }}: + - template: /eng/pipelines/common/evaluate-default-paths.yml + +- template: /eng/pipelines/runtime-extra-platforms-wasm.yml + parameters: + isExtraPlatformsBuild: false From ac43b7f3db33555e4d052a1f910922ae94c043f7 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Tue, 8 Feb 2022 19:09:00 -0500 Subject: [PATCH 2/2] Add missing variables template. thanks to @safern --- eng/pipelines/runtime-wasm.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/pipelines/runtime-wasm.yml b/eng/pipelines/runtime-wasm.yml index 9ead33295d4101..da464d4750fc54 100644 --- a/eng/pipelines/runtime-wasm.yml +++ b/eng/pipelines/runtime-wasm.yml @@ -4,6 +4,9 @@ trigger: none +variables: + - template: /eng/pipelines/common/variables.yml + jobs: #