From: Daniel P. Berrangé Date: Thu, 22 Feb 2018 14:14:17 +0000 (+0000) Subject: travis: run "make distcheck" instead of just "make check" X-Git-Tag: v4.1.0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60ae63c230e32801fe34c3999ba288070ec8daa2;p=thirdparty%2Flibvirt.git travis: run "make distcheck" instead of just "make check" Running "make distcheck" includes the "make check", and "make dist" targets. It ensures that we have CLEANFILES and uninstall rules setup correctly, as well as validating VPATH builds succeed. Reviewed-by: Andrea Bolognani Signed-off-by: Daniel P. Berrangé --- diff --git a/.travis.yml b/.travis.yml index 33887e7284..0cfdf80950 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,7 +96,7 @@ before_script: script: # Many unit tests still fail on macOS, and there are a bunch of issues with # syntax-check as well, so skip those steps on that platform for now - - make -j3 && if [ "$TRAVIS_OS_NAME" != "osx" ]; then make -j3 syntax-check && make -j3 check; fi + - make -j3 && if [ "$TRAVIS_OS_NAME" != "osx" ]; then make -j3 syntax-check && make -j3 distcheck; fi after_failure: - echo '============================================================================'