summaryrefslogtreecommitdiffstats
path: root/src/bat/ci/script.bash
blob: 3b717e5f6d89c902c03a4b0ec5271a3d6168f8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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
    cargo test --target "$TARGET" --verbose

    cargo run --target "$TARGET" -- < /dev/null
fi