mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 14:08:32 +00:00
install rust target for arm ios simulator (#13077)
# Objective - GitHub action running iOS CI has been updated to use arm runner - This makes iOS test fail as it's not installing the correct rust target ## Solution - add the correct rust target, do not remove x86 targets for now as it may be some time for a partial rollout
This commit is contained in:
parent
c593ee1055
commit
dcbdae003f
1 changed files with 2 additions and 1 deletions
3
.github/workflows/validation-jobs.yml
vendored
3
.github/workflows/validation-jobs.yml
vendored
|
@ -32,8 +32,9 @@ jobs:
|
|||
target
|
||||
key: ${{ runner.os }}-ios-install-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
# TODO: remove x86 target once it always run on arm GitHub runners
|
||||
- name: Add iOS targets
|
||||
run: rustup target add aarch64-apple-ios x86_64-apple-ios
|
||||
run: rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim
|
||||
|
||||
- name: Build and install iOS app in iOS Simulator.
|
||||
run: cd examples/mobile && make install
|
||||
|
|
Loading…
Add table
Reference in a new issue