From eb5193c5b48410aa62090f5f473ccb4fd1f277a3 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Sun, 1 Oct 2017 11:28:47 +0100 Subject: [PATCH] travis: hook check-setup.sh into the build Only do it for one build, for now use the one that also enables Rust. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9b01f015f4..71c9c1a940 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,6 +65,7 @@ matrix: - *default-cflags - ENABLE_RUST="yes" - ARGS="--enable-rust --enable-rust-strict" + - DO_CHECK_SETUP_SCRIPTS="yes" # Linux, gcc, Rust (1.15.0 - oldest supported). - os: linux compiler: gcc @@ -153,6 +154,10 @@ script: else make ${j} check fi + - | + if [[ "$DO_CHECK_SETUP_SCRIPTS" == "yes" ]]; then + (cd scripts && ./check-setup.sh) + fi before_install: - export PATH=$HOME/.cargo/bin:$PATH