File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 '
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments