Skip to content

Commit 7979113

Browse files
authored
Merge pull request #313 from OP-Engineering/oscar/ci-fix
Try selecting xcode versions for CI
2 parents 0dfd90b + bec1852 commit 7979113

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,13 @@ jobs:
6969
./scripts/test-android.sh
7070
test-ios:
7171
runs-on: macos-latest
72-
env:
73-
TURBO_CACHE_DIR: .turbo/ios
7472
steps:
7573
- name: Checkout
7674
uses: actions/checkout@v4
7775

76+
- name: Xcode Select
77+
run: sudo xcode-select -s /Applications/Xcode_16.4.app
78+
7879
- name: Turn off addons
7980
run: |
8081
node ./scripts/turnOffEverything.js
@@ -110,12 +111,13 @@ jobs:
110111
111112
test-ios-embedded:
112113
runs-on: macos-latest
113-
env:
114-
TURBO_CACHE_DIR: .turbo/ios
115114
steps:
116115
- name: Checkout
117116
uses: actions/checkout@v4
118117

118+
- name: Xcode Select
119+
run: sudo xcode-select -s /Applications/Xcode_16.4.app
120+
119121
- name: Turn on ios embedded
120122
run: |
121123
node ./scripts/turnOnIOSEmbedded.js
@@ -151,12 +153,13 @@ jobs:
151153
152154
test-ios-sqlcipher:
153155
runs-on: macos-latest
154-
env:
155-
TURBO_CACHE_DIR: .turbo/ios
156156
steps:
157157
- name: Checkout
158158
uses: actions/checkout@v4
159159

160+
- name: Xcode Select
161+
run: sudo xcode-select -s /Applications/Xcode_16.4.app
162+
160163
- name: Turn on SQLCipher
161164
run: |
162165
node ./scripts/turnOnSQLCipher.js
@@ -192,12 +195,13 @@ jobs:
192195
193196
test-ios-libsql:
194197
runs-on: macos-latest
195-
env:
196-
TURBO_CACHE_DIR: .turbo/ios
197198
steps:
198199
- name: Checkout
199200
uses: actions/checkout@v4
200201

202+
- name: Xcode Select
203+
run: sudo xcode-select -s /Applications/Xcode_16.4.app
204+
201205
- name: Turn on SQLCipher
202206
run: |
203207
node ./scripts/turnOnLibsql.js

0 commit comments

Comments
 (0)