Skip to content

Commit f51fe4b

Browse files
authored
Add a new wrapper runtime-wasm.yml to be used from azdo (#65032)
* 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`. * Add missing variables template. thanks to @safern
1 parent c4c1c3a commit f51fe4b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

eng/pipelines/runtime-wasm.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This is a wrapper yml for `runtime-extra-platforms-wasm.yml`, which
2+
# has all the wasm jobs. This file is essentially so we can have point
3+
# the pipeline in azdo UI to this, and thus avoid any scheduled triggers
4+
5+
trigger: none
6+
7+
variables:
8+
- template: /eng/pipelines/common/variables.yml
9+
10+
jobs:
11+
12+
#
13+
# Evaluate paths
14+
#
15+
- ${{ if eq(variables.dependOnEvaluatePaths, true) }}:
16+
- template: /eng/pipelines/common/evaluate-default-paths.yml
17+
18+
- template: /eng/pipelines/runtime-extra-platforms-wasm.yml
19+
parameters:
20+
isExtraPlatformsBuild: false

0 commit comments

Comments
 (0)