Skip to content

Commit ed31da2

Browse files
committed
Use -Zbuild-std=core
1 parent 212a2c9 commit ed31da2

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/workspace.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,35 @@ jobs:
2626
- name: Linux (linux_android.rs)
2727
run: cargo clippy --target x86_64-unknown-linux-gnu --features linux_disable_fallback
2828
- name: macOS (getentropy.rs)
29-
run: cargo clippy -Zbuild-std --target x86_64-apple-darwin
29+
run: cargo clippy -Zbuild-core=core --target x86_64-apple-darwin
3030
- name: Redox (use_file.rs)
31-
run: cargo clippy -Zbuild-std --target x86_64-unknown-redox
31+
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-redox
3232
- name: FreeBSD (getrandom.rs)
33-
run: cargo clippy -Zbuild-std --target x86_64-unknown-freebsd
33+
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-freebsd
3434
- name: Solaris (solaris.rs)
35-
run: cargo clippy -Zbuild-std --target x86_64-pc-solaris
35+
run: cargo clippy -Zbuild-core=core --target x86_64-pc-solaris
3636
- name: NetBSD (netbsd.rs)
37-
run: cargo clippy -Zbuild-std --target x86_64-unknown-netbsd
37+
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-netbsd
3838
- name: Fuchsia (fuchsia.rs)
39-
run: cargo clippy -Zbuild-std --target x86_64-unknown-fuchsia
39+
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-fuchsia
4040
- name: iOS (apple-other.rs)
41-
run: cargo clippy -Zbuild-std --target x86_64-apple-ios
41+
run: cargo clippy -Zbuild-core=core --target x86_64-apple-ios
4242
- name: WASI (wasi.rs)
43-
run: cargo clippy -Zbuild-std --target wasm32-wasip2
43+
run: cargo clippy -Zbuild-core=core --target wasm32-wasip2
4444
- name: Hermit (hermit.rs)
45-
run: cargo clippy -Zbuild-std --target x86_64-unknown-hermit
46-
# - name: VxWorks (vxworks.rs)
47-
# run: cargo clippy -Zbuild-std --target x86_64-wrs-vxworks
45+
run: cargo clippy -Zbuild-core=core --target x86_64-unknown-hermit
46+
- name: VxWorks (vxworks.rs)
47+
run: cargo clippy -Zbuild-core=core --target x86_64-wrs-vxworks
4848
- name: SOLID (solid.rs)
49-
run: cargo clippy -Zbuild-std --target aarch64-kmc-solid_asp3
49+
run: cargo clippy -Zbuild-core=core --target aarch64-kmc-solid_asp3
5050
- name: ESP-IDF (espidf.rs)
51-
run: cargo clippy -Zbuild-std --target riscv32imc-esp-espidf
51+
run: cargo clippy -Zbuild-core=core --target riscv32imc-esp-espidf
5252
- name: Windows 7 (windows7.rs)
53-
run: cargo clippy -Zbuild-std --target x86_64-win7-windows-msvc
53+
run: cargo clippy -Zbuild-core=core --target x86_64-win7-windows-msvc
5454
- name: Windows (windows.rs)
55-
run: cargo clippy -Zbuild-std --target x86_64-pc-windows-msvc
55+
run: cargo clippy -Zbuild-core=core --target x86_64-pc-windows-msvc
5656
- name: Fortranix SGX (rdrand.rs)
57-
run: cargo clippy -Zbuild-std --target x86_64-fortanix-unknown-sgx
57+
run: cargo clippy -Zbuild-core=core --target x86_64-fortanix-unknown-sgx
5858
- name: Web WASM (js.rs)
5959
run: cargo clippy -Zbuild-std --target wasm32-unknown-unknown --features js
6060

0 commit comments

Comments
 (0)