Skip to content

Commit

Permalink
Slow down CI-windows cache warming
Browse files Browse the repository at this point in the history
Every 4 hours is a little overzealous - don't want to blow out our cache limit of 10Gb.
  • Loading branch information
makslevental authored Aug 28, 2024
1 parent a79df28 commit 1eae535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ on:
- main

schedule:
# At minute 0 past every 4nd hour. (see https://crontab.guru)
# At minute 0 past every 12th hour. (see https://crontab.guru)
# this job is to keep the ccache cache warm
- cron: '0 */4 * * *'
- cron: '0 */12 * * *'

concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
Expand Down

0 comments on commit 1eae535

Please sign in to comment.