From: Jason Ish Date: Tue, 24 Oct 2017 12:52:25 +0000 (-0600) Subject: travis: do make distcheck on Rust 1.15.0 build X-Git-Tag: suricata-4.0.2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=288d2ce3e9ad286923c671a3e501821d332c28bd;p=thirdparty%2Fsuricata.git travis: do make distcheck on Rust 1.15.0 build --- diff --git a/.travis.yml b/.travis.yml index 71c9c1a940..d75b60bd93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,6 +75,7 @@ matrix: - ENABLE_RUST="yes" - RUST_VERSION="1.15.0" - ARGS="--enable-rust --enable-rust-strict" + - DO_DISTCHECK="yes" # Linux, gcc, -DNDEBUG. - os: linux compiler: gcc @@ -154,6 +155,10 @@ script: else make ${j} check fi + - | + if [[ "$DO_DISTCHECK" == "yes" ]]; then + make distcheck DISTCHECK_CONFIGURE_FLAGS="${ARGS}" + fi - | if [[ "$DO_CHECK_SETUP_SCRIPTS" == "yes" ]]; then (cd scripts && ./check-setup.sh)