summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-04-16 11:07:54 -0400
committerDan Davison <dandavison7@gmail.com>2020-04-16 11:07:54 -0400
commit9cb1db3b480afaa798221102dee5f15e026c4020 (patch)
treec71b08b13b9a36ae914681bf0b7882939c7fd4bd /ci
parent9557639e098d6bd3bd5fc57931297a8f7cc643a9 (diff)
Run end-to-end test in CI builds
Diffstat (limited to 'ci')
-rwxr-xr-xci/script.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/script.sh b/ci/script.sh
index 3b717e5f..954cb52e 100755
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -8,6 +8,7 @@ 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
+ make end-to-end-test
cargo run --target "$TARGET" -- < /dev/null
fi