We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8001d4 commit 8e76b64Copy full SHA for 8e76b64
.github/workflows/ci.yml
@@ -189,12 +189,22 @@ jobs:
189
timeout-minutes: 45
190
env:
191
TURBO_CACHE_DIR: .turbo/ios
192
+ # Fix github runner issues with xcode 26 toolchains
193
+ # https://github.com/actions/runner-images/issues/13135#issuecomment-3722044150
194
steps:
195
+ - name: Set Xcode Toolchain
196
+ shell: bash
197
+ run: |
198
+ echo "TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault" >> $GITHUB_ENV
199
+
200
- name: Checkout
201
uses: actions/checkout@v4
202
203
- name: Setup
204
uses: ./.github/actions/setup
205
206
+ - name: Select XCode 26.3
207
+ run: sudo xcode-select -s '/Applications/Xcode_26.3.0.app/Contents/Developer'
208
209
- name: Cache turborepo for iOS
210
uses: actions/cache@v3
0 commit comments