mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 15:08:53 +00:00
16 lines
376 B
Bash
Executable File
16 lines
376 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
declare -a targets=(
|
|
"x86_64-apple-darwin"
|
|
"x86_64-unknown-freebsd"
|
|
"x86_64-unknown-linux-gnu"
|
|
"x86_64-pc-windows-gnu"
|
|
)
|
|
|
|
for target in "${targets[@]}"; do
|
|
cargo check --target "$target" --all-targets --examples --bins --tests --no-default-features
|
|
cargo check --target "$target" --all-targets --examples --bins --tests --all-features
|
|
done
|