Skip to content

Commit ac706bd

Browse files
committed
CI: Add a weekly scheduled run to the Azure pipelines
This commit adds a weekly scheduled run to the Azure pipelines CI. It runs each Monday at 06:00 UTC on the main and maintenance/0.13.x branches. Periodically scheduled runs can detect errors and warnings appearing in changes in upstream dependencies or the build environment. By having a scheduled run they can be traced back easier to a dependency or environment change, then if they would pop up in a random PR.
1 parent 8ae5c63 commit ac706bd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

azure-pipelines.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
trigger:
44
- main
5+
schedules:
6+
- cron: "0 6 * * 1" # Each Monday at 06:00 UTC
7+
displayName: Weekly scheduled run
8+
branches:
9+
include: [main, maintenance/0.13.x]
10+
always: true
511

612
variables:
713
MKL_NUM_THREADS: 1

0 commit comments

Comments
 (0)