mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-16 08:58:26 +01:00
6fb5004b85
closes #244
11 lines
273 B
Bash
Executable file
11 lines
273 B
Bash
Executable file
#!/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-gnueabihf ]]; then
|
|
cargo test --target "$TARGET" --verbose
|
|
fi
|