Skip to content

Commit b1981ce

Browse files
committed
Update CI
1 parent 7b1d88e commit b1981ce

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
config: ['debug', 'release']
2323
steps:
2424
- uses: actions/checkout@v3
25-
- name: Select Xcode 15.4
26-
run: sudo xcode-select -s /Applications/Xcode_15.4.app
25+
- name: Select Xcode 16.3
26+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
2727
- name: Run ${{ matrix.config }} tests
2828
run: CONFIG=${{ matrix.config }} make test-library
2929
- name: Build platforms ${{ matrix.config }}
@@ -34,8 +34,8 @@ jobs:
3434
runs-on: macos-14
3535
steps:
3636
- uses: actions/checkout@v3
37-
- name: Select Xcode 15.4
38-
run: sudo xcode-select -s /Applications/Xcode_15.4.app
37+
- name: Select Xcode 16.3
38+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
3939
- name: Build for library evolution
4040
run: make build-for-library-evolution
4141

@@ -47,8 +47,8 @@ jobs:
4747
config: ['debug', 'release']
4848
steps:
4949
- uses: actions/checkout@v3
50-
- name: Select Xcode 15.4
51-
run: sudo xcode-select -s /Applications/Xcode_15.4.app
50+
- name: Select Xcode 16.3
51+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
5252
- name: Run ${{ matrix.config }} tests
5353
run: CONFIG=${{ matrix.config }} make test-library
5454
- name: Build platforms ${{ matrix.config }}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
CONFIG = debug
2-
PLATFORM_IOS = iOS Simulator,name=iPhone 15 Pro Max
2+
PLATFORM_IOS = iOS Simulator,name=iPhone 16 Pro Max
33
PLATFORM_MACOS = macOS
44
PLATFORM_MAC_CATALYST = macOS,variant=Mac Catalyst
55
PLATFORM_TVOS = tvOS Simulator,name=Apple TV
6-
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 7 (45mm)
6+
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 8 (45mm)
77

88
CONFIG = debug
99

0 commit comments

Comments
 (0)