forked from actions/runner-images
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add secondary MacOs image generation pipelines (actions#9218)
- Loading branch information
1 parent
a9c5653
commit 4637c23
Showing
5 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: macOS-11_$(date:yyyyMMdd)$(rev:.r)_unstable | ||
schedules: | ||
- cron: '45 0 * * 1' | ||
displayName: Weekly | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
trigger: none | ||
|
||
variables: | ||
- group: Mac-Cloud Image Generation | ||
|
||
jobs: | ||
- template: image-generation.yml | ||
parameters: | ||
image_label: 'macOS Big Sur' | ||
base_image_name: 'clean-macOS-11-380Gb-runner' | ||
template_path: 'templates/macOS-11.pkr.hcl' | ||
target_datastore: 'ds-image' | ||
variable_group_name: 'Mac-Cloud Secondary Image Generation' | ||
primary_agent: 'false' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: macOS-12_$(date:yyyyMMdd)$(rev:.r)_unstable | ||
schedules: | ||
- cron: '45 1 * * 1' | ||
displayName: Weekly | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
trigger: none | ||
|
||
variables: | ||
- group: Mac-Cloud Image Generation | ||
|
||
jobs: | ||
- template: image-generation.yml | ||
parameters: | ||
image_label: 'macOS Monterey' | ||
base_image_name: 'clean-macOS-12-380Gb-runner' | ||
template_path: 'templates/macOS-12.pkr.hcl' | ||
target_datastore: 'ds-image' | ||
variable_group_name: 'Mac-Cloud Secondary Image Generation' | ||
primary_agent: 'false' |