summaryrefslogtreecommitdiffstats
path: root/ci/script.bash
blob: 5316210a2fb600641a9fd071fa4e9a9f1056ab97 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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-* ]]; then
    cargo test --target "$TARGET" --verbose
fi