2018-08-18 21:51:19 +02:00
|
|
|
#!/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
|
2018-09-08 23:23:14 +02:00
|
|
|
if [[ $TARGET != arm-unknown-linux-gnueabihf ]] && [[ $TARGET != aarch64-unknown-linux-gnu ]]; then
|
2018-08-18 21:51:19 +02:00
|
|
|
cargo test --target "$TARGET" --verbose
|
|
|
|
|
|
|
|
# Run 'bat' on its own source code and the README
|
2019-10-06 09:21:05 +02:00
|
|
|
cargo run --target "$TARGET" -- src/bin/bat/main.rs README.md --paging=never
|
2018-08-18 21:51:19 +02:00
|
|
|
fi
|
2020-03-30 18:43:13 +02:00
|
|
|
|
|
|
|
# Check bat-as-a-library, which has a smaller set of dependencies
|
2020-03-31 10:37:49 +02:00
|
|
|
cargo check --target "$TARGET" --verbose --lib --no-default-features --features regex-onig
|
|
|
|
cargo check --target "$TARGET" --verbose --lib --no-default-features --features regex-onig,git
|
|
|
|
cargo check --target "$TARGET" --verbose --lib --no-default-features --features regex-onig,paging
|
|
|
|
cargo check --target "$TARGET" --verbose --lib --no-default-features --features regex-onig,git,paging
|