summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-04-26 13:36:14 -0400
committerDan Davison <dandavison7@gmail.com>2020-04-26 14:45:50 -0400
commit15bedf2eb49de35d2f369d2fcff0090595e58362 (patch)
tree07e524f9360c7d2a801fb87d097a6aece4958327 /ci
parentda89d65703c36e26840a2a40bb778fcb78120f60 (diff)
Move end-to-end-test out of Makefile into shell script
Diffstat (limited to 'ci')
-rwxr-xr-xci/script.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/script.sh b/ci/script.sh
index 954cb52e..51e638d6 100755
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -8,7 +8,8 @@ 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 build --release
+ ./tests/test_color_only_output_matches_git_on_full_repo_history
cargo run --target "$TARGET" -- < /dev/null
fi