Skip to content

Commit 8889598

Browse files
committed
Fix build core flag
1 parent 71a5f1c commit 8889598

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/workspace.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,41 +22,41 @@ jobs:
2222
toolchain: nightly-2024-06-11
2323
components: clippy,rust-src
2424
- name: iOS (apple-other.rs)
25-
run: cargo clippy -Zbuild-core=core --target x86_64-apple-ios
25+
run: cargo clippy -Zbuild-std=core --target x86_64-apple-ios
2626
- name: ESP-IDF (espidf.rs)
27-
run: cargo clippy -Zbuild-core=core --target riscv32imc-esp-espidf
27+
run: cargo clippy -Zbuild-std=core --target riscv32imc-esp-espidf
2828
- name: Fuchsia (fuchsia.rs)
29-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-fuchsia
29+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-fuchsia
3030
- name: OpenBSD (getentropy.rs)
31-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-openbsd
31+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-openbsd
3232
- name: FreeBSD (getrandom.rs)
33-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-freebsd
33+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-freebsd
3434
- name: Hermit (hermit.rs)
35-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-hermit
35+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-hermit
3636
- name: Web WASM (js.rs)
3737
run: cargo clippy -Zbuild-std --target wasm32-unknown-unknown --features js
3838
- name: Linux (linux_android.rs)
3939
run: cargo clippy --target x86_64-unknown-linux-gnu --features linux_disable_fallback
4040
- name: Linux (linux_android_with_fallback.rs)
4141
run: cargo clippy --target x86_64-unknown-linux-gnu
4242
- name: NetBSD (netbsd.rs)
43-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-netbsd
43+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-netbsd
4444
- name: Fortranix SGX (rdrand.rs)
45-
run: cargo clippy -Zbuild-core=core --target x86_64-fortanix-unknown-sgx
45+
run: cargo clippy -Zbuild-std=core --target x86_64-fortanix-unknown-sgx
4646
- name: Solaris (solaris.rs)
47-
run: cargo clippy -Zbuild-core=core --target x86_64-pc-solaris
47+
run: cargo clippy -Zbuild-std=core --target x86_64-pc-solaris
4848
- name: SOLID (solid.rs)
49-
run: cargo clippy -Zbuild-core=core --target aarch64-kmc-solid_asp3
49+
run: cargo clippy -Zbuild-std=core --target aarch64-kmc-solid_asp3
5050
- name: Redox (use_file.rs)
51-
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-redox
51+
run: cargo clippy -Zbuild-std=core --target x86_64-unknown-redox
5252
- name: VxWorks (vxworks.rs)
53-
run: cargo clippy -Zbuild-core=core --target x86_64-wrs-vxworks
53+
run: cargo clippy -Zbuild-std=core --target x86_64-wrs-vxworks
5454
- name: WASI (wasi.rs)
55-
run: cargo clippy -Zbuild-core=core --target wasm32-wasip2
55+
run: cargo clippy -Zbuild-std=core --target wasm32-wasip2
5656
- name: Windows 7 (windows7.rs)
57-
run: cargo clippy -Zbuild-core=core --target x86_64-win7-windows-msvc
57+
run: cargo clippy -Zbuild-std=core --target x86_64-win7-windows-msvc
5858
- name: Windows (windows.rs)
59-
run: cargo clippy -Zbuild-core=core --target x86_64-pc-windows-msvc
59+
run: cargo clippy -Zbuild-std=core --target x86_64-pc-windows-msvc
6060

6161
fmt:
6262
name: rustfmt

0 commit comments

Comments
 (0)