Add arm as a compile target

This commit is contained in:
sharkdp
2018-08-18 21:51:19 +02:00
committed by David Peter
parent e5b8c4471a
commit 76be0d3933
4 changed files with 64 additions and 17 deletions

14
ci/script.bash Executable file
View File

@ -0,0 +1,14 @@
#!/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