Skip to content

Commit 2524f9d

Browse files
authored
Merge pull request #279 from microsoft/ventura
split out pre-Haswell Kitchen VM jobs
2 parents 24812f6 + 35fed76 commit 2524f9d

File tree

2 files changed

+28
-13
lines changed

2 files changed

+28
-13
lines changed

azure-pipelines.yml

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,38 @@ resources:
4242
type: git
4343
name: chef-pipelines-templates
4444

45+
parameters:
46+
- name: kitchenSuites
47+
displayName: Kitchen Suites
48+
type: object
49+
default:
50+
- default
51+
- software-updates
52+
- spotlight
53+
# - xcode-from-apple
54+
# - xcode-from-url
55+
- command-line-tools
56+
- certificate
57+
- users
58+
- keychain
59+
- remote-access
60+
4561
jobs:
4662
- template: chefspec-cookstyle.yml@templates
4763
- template: test-kitchen.yml@templates
4864
parameters:
65+
jobName: "haswell"
66+
kitchenFile: kitchen.yml
67+
venturaPlus: true
68+
platforms:
69+
- ventura-x86
70+
# - ventura-arm
71+
suites: ${{ parameters.kitchenSuites }}
72+
- template: test-kitchen.yml@templates
73+
parameters:
74+
jobName: "vintage"
4975
platforms:
5076
- big-sur-x86
5177
- monterey-x86
52-
# - ventura-arm
53-
suites:
54-
- default
55-
- software-updates
56-
- spotlight
57-
# - xcode-from-apple
58-
# - xcode-from-url
59-
- command-line-tools
60-
- certificate
61-
- users
62-
- keychain
63-
- remote-access
78+
suites: ${{ parameters.kitchenSuites }}
6479
kitchenFile: kitchen.yml

kitchen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ platforms:
3333
- name: ventura-x86
3434
driver:
3535
box: microsoft/macos-ventura
36-
box_version: 13.4
36+
box_version: 13.4.1
3737

3838
- name: ventura-arm
3939
driver:

0 commit comments

Comments
 (0)