summaryrefslogtreecommitdiffstats
path: root/etc/ci/script.sh
diff options
context:
space:
mode:
Diffstat (limited to 'etc/ci/script.sh')
-rwxr-xr-xetc/ci/script.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/etc/ci/script.sh b/etc/ci/script.sh
deleted file mode 100755
index b71212ab..00000000
--- a/etc/ci/script.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env bash
-
-set -ex
-
-# verify code is well formatted
-cargo fmt --all -- --check
-
-# 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