Skip to content

Commit e9dfa74

Browse files
chore(ci): update to xcode 16.3 (#319)
* chore(ci): update to xcode 16.3 * Review: add matrix 16.0, 16.3
1 parent c8c7003 commit e9dfa74

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.circleci/config.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33
orbs:
44
apple: ml-explore/pr-approval@0.1.0
5-
5+
66
parameters:
77
nightly_build:
88
type: boolean
@@ -14,8 +14,11 @@ parameters:
1414
jobs:
1515

1616
mac_build_and_test:
17+
parameters:
18+
xcode_version:
19+
type: string
1720
macos:
18-
xcode: 16.0.0
21+
xcode: << parameters.xcode_version >>
1922
resource_class: macos.m1.medium.gen1
2023
steps:
2124
- checkout
@@ -57,7 +60,10 @@ workflows:
5760
- not: << pipeline.parameters.nightly_build >>
5861
- not: << pipeline.parameters.weekly_build >>
5962
jobs:
60-
- mac_build_and_test
63+
- mac_build_and_test:
64+
matrix:
65+
parameters:
66+
xcode_version: ["16.0.0", "16.3.0"]
6167

6268
prb:
6369
when:
@@ -71,3 +77,6 @@ workflows:
7177
context: pr-approval
7278
- mac_build_and_test:
7379
requires: [ hold ]
80+
matrix:
81+
parameters:
82+
xcode_version: ["16.0.0", "16.3.0"]

0 commit comments

Comments
 (0)