From affd80ad6da5ffa2ac0b846ea998af4752df600a Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Sat, 1 Sep 2018 11:50:02 -0400 Subject: [PATCH] travis: use 'distcheck' rather than 'check' To test the creation of the tar and out-of-tree builds all the time, do 'distcheck' rather than a simple 'check'. Signed-off-by: Stefan Berger --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 85fa4101..385c188b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,5 +26,5 @@ addons: build_command_prepend: "./bootstrap.sh; ./configure --with-openssl; make clean" build_command: make -j4 branch_pattern: coverity_scan -script: "./autogen.sh && ./configure --with-openssl --prefix=/usr && make -j4 check - && sudo make -j4 check" +script: "./autogen.sh --with-openssl --prefix=/usr && make -j4 distcheck + && sudo make -j4 distcheck"