mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 17:08:04 +00:00
15 lines
401 B
Bash
15 lines
401 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-gnueabihf ]]; then
|
||
|
cargo test --target "$TARGET" --verbose
|
||
|
|
||
|
# Run 'bat' on its own source code and the README
|
||
|
cargo run --target "$TARGET" -- src/main.rs README.md --paging=never
|
||
|
fi
|