mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 06:02:36 +00:00
12 lines
265 B
Bash
12 lines
265 B
Bash
|
#!/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
|