Skip to content

Commit 9a1b1e9

Browse files
committed
Trying a few things
1 parent 35a2593 commit 9a1b1e9

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/native-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ jobs:
7070
env:
7171
SCHEME: RNSentryCocoaTester
7272
CONFIGURATION: Release
73+
# Fix for Xcode 26+ with MetalToolchain: use default Xcode toolchain to avoid
74+
# missing Swift compatibility libraries (swiftCompatibility56, etc.)
75+
# See: https://github.com/actions/runner-images/issues/13135
76+
TOOLCHAINS: com.apple.dt.toolchain.XcodeDefault
7377
run: |
7478
# Find first available iPhone simulator from latest iOS runtime
7579
DEVICE_ID=$(xcrun simctl list devices available iPhone -j | jq -r '

.github/workflows/sample-application-expo.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,11 @@ jobs:
125125
- name: Build iOS App
126126
if: ${{ matrix.platform == 'ios' }}
127127
working-directory: samples/expo/ios
128+
env:
129+
# Fix for Xcode 26+ with MetalToolchain: use default Xcode toolchain to avoid
130+
# missing Swift compatibility libraries (swiftCompatibility56, etc.)
131+
# See: https://github.com/actions/runner-images/issues/13135
132+
TOOLCHAINS: com.apple.dt.toolchain.XcodeDefault
128133
run: |
129134
[[ "${{ matrix.build-type }}" == "production" ]] && CONFIG='Release' || CONFIG='Debug'
130135
echo "Building $CONFIG"

0 commit comments

Comments
 (0)