From: Ilya Shipitsin Date: Sat, 25 Feb 2017 18:00:04 +0000 (+0500) Subject: travis-ci: add 'make distcheck' to test scenario, V2 X-Git-Tag: v2.5_beta1~729 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56e6bd8967d72c4374389dfd5cf32f5e3b86242c;p=thirdparty%2Fopenvpn.git travis-ci: add 'make distcheck' to test scenario, V2 in rare cases openvpn is built from tarball, it happens during "installer build" process. "make distcheck" helps to prevent problems during such builds. V2: limit "make distcheck" to one build configuration Signed-off-by: Ilya Shipitsin Acked-by: Steffan Karger Message-Id: <1488045604-25460-1-git-send-email-chipitsine@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg14208.html Signed-off-by: Gert Doering --- diff --git a/.travis.yml b/.travis.yml index a68374ae1..3c0aa7d63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ matrix: - env: SSLLIB="mbedtls" os: linux compiler: clang - - env: SSLLIB="openssl" EXTRA_CONFIG="--disable-crypto" + - env: SSLLIB="openssl" EXTRA_CONFIG="--disable-crypto" EXTRA_SCRIPT="make distcheck" os: linux compiler: clang - env: SSLLIB="openssl" EXTRA_CONFIG="--disable-lzo" @@ -84,3 +84,4 @@ script: - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ldd src/openvpn/openvpn; fi - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then otool -L src/openvpn/openvpn; fi - make check + - $EXTRA_SCRIPT