Skip to content

Commit 0dcab6e

Browse files
Increase jitstress job run frequency (#49020)
Change #41856 reduced stress job frequency to once per day, alternating between main and the release branches. However, the release branches get few changes yet still run the job. (Also, all the release branches run the job at the same time.) Change to running the job daily in main, where most development happens. Also change the runs to daily in the release branches, but change to only run if the branch has changed since the last run.
1 parent cb606ad commit 0dcab6e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

eng/pipelines/coreclr/jitstress.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
trigger: none
22

33
schedules:
4-
- cron: "0 4 * * 1,3,5"
5-
displayName: Mon, Wed, Fri at 8:00 PM (UTC-8:00)
4+
- cron: "0 4 * * *"
5+
displayName: Daily at 8:00 PM (UTC-8:00)
66
branches:
77
include:
88
- main
99
always: true
10-
- cron: "0 4 * * 0,2,4,6"
11-
displayName: Sun, Tue, Thu, Sat at 8:00 PM (UTC-8:00)
10+
- cron: "0 4 * * *"
11+
displayName: Daily (if changes) at 8:00 PM (UTC-8:00)
1212
branches:
1313
include:
1414
- release/*.*
15-
always: true
15+
always: false
1616

1717
jobs:
1818

eng/pipelines/coreclr/libraries-jitstress.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
trigger: none
22

33
schedules:
4-
- cron: "0 7 * * 0,2,4,6"
5-
displayName: Sun, Tue, Thu, Sat at 11:00 PM (UTC-8:00)
4+
- cron: "0 7 * * *"
5+
displayName: Daily at 11:00 PM (UTC-8:00)
66
branches:
77
include:
88
- main
99
always: true
10-
- cron: "0 7 * * 1,3,5"
11-
displayName: Mon, Wed, Fri at 11:00 PM (UTC-8:00)
10+
- cron: "0 7 * * *"
11+
displayName: Daily (if changes) at 11:00 PM (UTC-8:00)
1212
branches:
1313
include:
1414
- release/*.*
15-
always: true
15+
always: false
1616

1717
jobs:
1818

0 commit comments

Comments
 (0)