Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INTERNAL] CI: Fixes Weekend rolling build at 2 hour cadence #4751

Merged
merged 10 commits into from
Oct 5, 2024
10 changes: 8 additions & 2 deletions azure-pipelines-rolling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ trigger: none
pr: none

schedules:
- cron: "0 7,13,0,5 * * *" # cron syntax https://learn.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers?view=azure-devops&tabs=yaml#cron-syntax
displayName: Cosmos Rolling
- cron: "0 7,13,0,5 * * 1,2,3,4,5" # cron syntax https://learn.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers?view=azure-devops&tabs=yaml#cron-syntax
displayName: Cosmos Weekly Rolling
branches:
include:
- master
always: true # whether to always run the pipeline or only if there have been source code changes since the last run. The default is false
- cron: "0 0/2 * * 0,6" # cron syntax https://learn.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers?view=azure-devops&tabs=yaml#cron-syntax
displayName: Cosmos Weekly Rolling
branches:
include:
- master
Expand Down
Loading