Skip to content

Commit c1058f6

Browse files
committed
Use XCode 13.2.1
1 parent a4af0db commit c1058f6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ macos-11, ubuntu-latest, windows-latest ]
13+
os: [ macos-12, ubuntu-latest, windows-latest ]
1414

1515
runs-on: ${{ matrix.os }}
1616

@@ -53,8 +53,12 @@ jobs:
5353
if: matrix.os == 'ubuntu-latest'
5454
run: sudo apt-get install -y libtinfo5
5555

56+
- name: Select Xcode version
57+
if: matrix.os == 'macos-12'
58+
run: sudo xcode-select -s '/Applications/Xcode_13.2.1.app/Contents/Developer'
59+
5660
- name: Run macOS Tests
57-
if: matrix.os == 'macos-11'
61+
if: matrix.os == 'macos-latest'
5862
run: >
5963
./gradlew check --stacktrace
6064
-PKMP_TARGETS="JVM,JS,IOS_ARM32,IOS_ARM64,IOS_X64,IOS_SIMULATOR_ARM64,MACOS_ARM64,MACOS_X64,TVOS_ARM64,TVOS_X64,TVOS_SIMULATOR_ARM64,WATCHOS_ARM32,WATCHOS_ARM64,WATCHOS_DEVICE_ARM64,WATCHOS_X64,WATCHOS_X86,WATCHOS_SIMULATOR_ARM64,WASM,WASM_32"

build-logic/src/main/kotlin/-KmpConfigurationExtension.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ fun KmpConfigurationExtension.configureShared(
3333

3434
iosArm64()
3535
iosX64()
36-
3736
iosSimulatorArm64()
3837

3938
// Just use JVM. Not dealing with native desktop

0 commit comments

Comments
 (0)