Skip to content

Commit f49304b

Browse files
committed
Nightly will run on iOS 17 (Xcode 15) / iOS 18 (Xcode 16 and 26) / iOS 26 (Xcode 26)
PRs will run on iOS 18 (Xcode 16) and iOS 26 (Xcode 26)
1 parent c2a2308 commit f49304b

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

.github/workflows/nightly.yaml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
macos: [macos-15]
15-
ios: [^18]
16-
xcode: [^16, ^26]
17-
# Valid combinations that will run:
18-
# - iOS ^18 + Xcode ^16
19-
# - iOS ^18 + Xcode ^26
14+
include:
15+
- macos: macos-15
16+
ios: ^18
17+
xcode: ^16
18+
- macos: macos-15
19+
ios: ^18
20+
xcode: ^26
21+
- macos: macos-15
22+
ios: ^26
23+
xcode: ^26
24+
- macos: macos-14
25+
ios: ^17
26+
xcode: ^15
2027
uses: ./.github/workflows/reusable-workflow.yaml
2128
with:
2229
ios: ${{ matrix.ios }}

.github/workflows/pr.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ jobs:
3333
needs: [permission-check]
3434
strategy:
3535
matrix:
36-
macos: [macos-15]
37-
ios: [^18]
38-
xcode: [^16, ^26]
36+
include:
37+
- macos: macos-15
38+
ios: ^18
39+
xcode: ^16
40+
- macos: macos-15
41+
ios: ^26
42+
xcode: ^26
3943
uses: ./.github/workflows/reusable-workflow.yaml
4044
with:
4145
is_pr: true

0 commit comments

Comments
 (0)