bat/ci/script.bash

15 lines
455 B
Bash
Raw Normal View History

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
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
cargo run --target "$TARGET" -- src/bin/bat/main.rs README.md --paging=never
2018-08-18 21:51:19 +02:00
fi