summaryrefslogtreecommitdiffstats
path: root/etc/ci/script.sh
diff options
context:
space:
mode:
Diffstat (limited to 'etc/ci/script.sh')
-rwxr-xr-xetc/ci/script.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/etc/ci/script.sh b/etc/ci/script.sh
new file mode 100755
index 00000000..e6e505ad
--- /dev/null
+++ b/etc/ci/script.sh
@@ -0,0 +1,16 @@
+#!/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 build --release
+ ./tests/test_raw_output_matches_git_on_full_repo_history
+ ./tests/test_deprecated_options > /dev/null
+
+ cargo run --target "$TARGET" -- < /dev/null
+fi