We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6660170 commit a16bc75Copy full SHA for a16bc75
.github/workflows/ci.yaml
@@ -153,13 +153,13 @@ jobs:
153
cargo run --manifest-path example_projects/frozen_stdlib/Cargo.toml
154
if: runner.os == 'Linux'
155
156
- - name: prepare AppleSilicon build
+ - name: prepare Intel MacOS build
157
uses: dtolnay/rust-toolchain@stable
158
with:
159
- target: aarch64-apple-darwin
+ target: x86_64-apple-darwin
160
if: runner.os == 'macOS'
161
- - name: Check compilation for Apple Silicon
162
- run: cargo check --target aarch64-apple-darwin
+ - name: Check compilation for Intel MacOS
+ run: cargo check --target x86_64-apple-darwin
163
164
- name: prepare iOS build
165
0 commit comments