From c86168132df78877f3e309631baaf3857f4310ef Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 30 Dec 2015 15:09:57 +0100 Subject: [PATCH] Really check building using the installed version in Travis builds The command to do this at the end of the script didn't actually do anything because the minimal sample had been already built in tree before. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 271c74a676..c0f5ba5e8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,5 +49,5 @@ script: - sudo make install - echo -en 'travis_fold:end:script.5\\r' - echo 'Testing building with the installed version...' && echo -en 'travis_fold:start:script.6\\r' - - make -C samples/minimal -f makefile.unx + - make -C samples/minimal -f makefile.unx -B - echo -en 'travis_fold:end:script.6\\r'