File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " ferric-cli " : patch
3+ ---
4+
5+ Add x86_64-apple-ios as a default target on an Apple host
Original file line number Diff line number Diff line change 9191 uses : android-actions/setup-android@v3
9292 with :
9393 packages : tools platform-tools ndk;${{ env.NDK_VERSION }}
94- - run : rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim
94+ - run : rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android aarch64-apple-ios-sim x86_64-apple-ios
9595 - run : npm ci
9696 - run : npm run bootstrap
9797 - run : npm test
@@ -148,12 +148,12 @@ jobs:
148148 uses : hendrikmuhs/ccache-action@v1.2
149149 with :
150150 key : ${{ github.job }}-${{ runner.os }}
151- - run : rustup target add aarch64-apple-ios-sim
151+ - run : rustup target add aarch64-apple-ios-sim x86_64-apple-ios
152152 - run : npm ci
153153 - run : npm run bootstrap
154154 env :
155155 CMAKE_RN_TRIPLETS : arm64;x86_64-apple-ios-sim
156- FERRIC_TARGETS : aarch64-apple-ios-sim
156+ FERRIC_TARGETS : aarch64-apple-ios-sim,x86_64-apple-ios
157157 # Because the Xcode project injects its own CCACHE_CONFIGPATH,
158158 # the configuration set by the ccache action doesn't propagate.
159159 - name : Expose Ccache config to Xcode
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ export const buildCommand = new Command("build")
207207 if ( isAppleSupported ( ) ) {
208208 if ( process . arch === "arm64" ) {
209209 targets . add ( "aarch64-apple-ios-sim" ) ;
210+ targets . add ( "x86_64-apple-ios" ) ;
210211 }
211212 }
212213 logNotice (
You can’t perform that action at this time.
0 commit comments