summaryrefslogtreecommitdiffstats
path: root/ci/script.bash
blob: 321dcb14d8a5dc96070c98083f47102ade8a2058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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