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

Schedule image rebuild once a month #1259

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions eng/pipelines/dotnet-buildtools-prereqs-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ trigger:
- src/*
pr: none

schedules:
- cron: "0 5 15 * *"
displayName: Nightly run
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Nightly" feels a little odd here since it is only run once a month. How about something more descriptive like "Monthly rebuild everything run" ... I'm not in love with that particular wording it is more descriptive.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's what I get for using copy and paste.

branches:
include:
- main
always: true

resources:
repositories:
- repository: InternalVersionsRepo
Expand Down Expand Up @@ -48,3 +56,7 @@ extends:
variableName: imageBuilderBuildArgs
dockerfileOs: (centos|debian)
baseOverrideRegistry: $(overrideRegistry) # Comes from DotNet-Docker-Common variable group
# Force all images to be rebuilt when triggered by the schedule
# See https://github.com/dotnet/dotnet-buildtools-prereqs-docker/issues/1224
${{ if eq(variables['Build.Reason'], 'Schedule') }}:
noCache: true