mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 07:51:38 +00:00
11 lines
265 B
Bash
Executable file
Vendored
11 lines
265 B
Bash
Executable file
Vendored
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Incorporate TARGET env var to the build and test process
|
|
cargo build --target "$TARGET" --verbose
|
|
|
|
# We cannot run arm executables on linux
|
|
if [[ $TARGET != arm-unknown-linux-* ]]; then
|
|
cargo test --target "$TARGET" --verbose
|
|
fi
|