Skip to content

Commit

Permalink
runtime-wasm: don't trigger for scheduled builds
Browse files Browse the repository at this point in the history
  • Loading branch information
radical committed Feb 7, 2022
1 parent 2779d1d commit c929f5c
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions eng/pipelines/runtime-extra-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,24 @@
# that happened during the last build.
trigger: none

schedules:
- cron: "0 9,21 * * *" # run at 9:00 and 21:00 (UTC) which is 1:00 and 13:00 (PST).
displayName: Runtime extra main schedule
branches:
include:
- main
always: false # run only if there were changes since the last successful scheduled run.
- cron: "0 6,18 * * *" # run at 6:00 and 18:00 (UTC) which is 22:00 and 10:00 (PST).
displayName: Runtime extra release schedule
branches:
include:
- release/*
always: false # run only if there were changes since the last successful scheduled run.

variables:
- template: /eng/pipelines/common/variables.yml

- ${{ if eq(variables.isNotSpecificPlatformOnlyBuild, true) }}:
schedules:
- cron: "0 9,21 * * *" # run at 9:00 and 21:00 (UTC) which is 1:00 and 13:00 (PST).
displayName: Runtime extra main schedule
branches:
include:
- main
always: false # run only if there were changes since the last successful scheduled run.
- cron: "0 6,18 * * *" # run at 6:00 and 18:00 (UTC) which is 22:00 and 10:00 (PST).
displayName: Runtime extra release schedule
branches:
include:
- release/*
always: false # run only if there were changes since the last successful scheduled run.

jobs:

#
Expand Down

0 comments on commit c929f5c

Please sign in to comment.