From 9cc724db09f7bfdbb5a7c133ee07c6f56ab0ec7a Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Tue, 2 Mar 2021 09:36:27 -0800 Subject: [PATCH] Increase jitstress job run frequency 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. --- eng/pipelines/coreclr/jitstress.yml | 10 +++++----- eng/pipelines/coreclr/libraries-jitstress.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/pipelines/coreclr/jitstress.yml b/eng/pipelines/coreclr/jitstress.yml index 22763c31eb4eed..29e2b7a6a9351f 100644 --- a/eng/pipelines/coreclr/jitstress.yml +++ b/eng/pipelines/coreclr/jitstress.yml @@ -1,18 +1,18 @@ trigger: none schedules: -- cron: "0 4 * * 1,3,5" - displayName: Mon, Wed, Fri at 8:00 PM (UTC-8:00) +- cron: "0 4 * * *" + displayName: Daily at 8:00 PM (UTC-8:00) branches: include: - main always: true -- cron: "0 4 * * 0,2,4,6" - displayName: Sun, Tue, Thu, Sat at 8:00 PM (UTC-8:00) +- cron: "0 4 * * *" + displayName: Daily (if changes) at 8:00 PM (UTC-8:00) branches: include: - release/*.* - always: true + always: false jobs: diff --git a/eng/pipelines/coreclr/libraries-jitstress.yml b/eng/pipelines/coreclr/libraries-jitstress.yml index 7ca4a9f0579fe4..6e611057302cca 100644 --- a/eng/pipelines/coreclr/libraries-jitstress.yml +++ b/eng/pipelines/coreclr/libraries-jitstress.yml @@ -1,18 +1,18 @@ trigger: none schedules: -- cron: "0 7 * * 0,2,4,6" - displayName: Sun, Tue, Thu, Sat at 11:00 PM (UTC-8:00) +- cron: "0 7 * * *" + displayName: Daily at 11:00 PM (UTC-8:00) branches: include: - main always: true -- cron: "0 7 * * 1,3,5" - displayName: Mon, Wed, Fri at 11:00 PM (UTC-8:00) +- cron: "0 7 * * *" + displayName: Daily (if changes) at 11:00 PM (UTC-8:00) branches: include: - release/*.* - always: true + always: false jobs: