travis: hook check-setup.sh into the build

Only do it for one build, for now use the one that also
enables Rust.
pull/2923/head
Jason Ish 8 years ago
parent 40a1a972d6
commit eb5193c5b4

@ -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

Loading…
Cancel
Save