Skip to content

Commit 6c94e29

Browse files
giginetKohki Mikiyonaskolb
authored
Support Xcode 15.4 and Xcode 16.0 Beta on GitHub Action (#1493)
* Support Xcode 16 on GitHub Action * Fix Xcode version * provide GITHUB_ACCESS_TOKEN for carthage --------- Co-authored-by: Kohki Miki <[email protected]> Co-authored-by: Yonas Kolb <[email protected]>
1 parent 9acab4a commit 6c94e29

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
name: Xcode ${{ matrix.xcode }}
99
strategy:
1010
matrix:
11-
xcode: ["15.3"]
11+
xcode: ["15.4", "16.0"]
1212
include:
13-
- xcode: "15.3"
14-
macos: macos-14
13+
- xcode: "15.4"
14+
macos: macos-15
15+
- xcode: "16.0"
16+
macos: macos-15
1517
env:
1618
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
1719
steps:
@@ -27,6 +29,8 @@ jobs:
2729
- name: Check fixtures
2830
run: scripts/diff-fixtures.sh
2931
- name: Build fixtures
32+
env:
33+
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3034
run: scripts/build-fixtures.sh
3135
run-linux:
3236
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)