We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f93597 commit fc38e6eCopy full SHA for fc38e6e
.github/workflows/ios.yml
@@ -85,7 +85,11 @@ jobs:
85
with:
86
xcode-version: '15.0.1'
87
- name: Configure Rust
88
+ # In the https://github.com/actions/runner-images/releases/tag/macos-13-arm64%2F20240721.1 release, Github changed where rustup was installed
89
+ # This update broke our build script which was assuming the cargo binary was located in ~/.cargo/bin/cargo
90
+ # The workaround is to asking brew to reinstall rustup
91
run: |
92
+ brew install rustup
93
rustup default stable
94
rustup update stable
95
rustup target add aarch64-apple-ios-sim
0 commit comments