From f08305ae33f5c7ce832913315164db96dcf985c0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Jan 2017 20:06:28 +0100 Subject: [PATCH] Clean before building using installed library in Travis CI The minimal sample had been already built as part of "make samples", so clean it before rebuilding it using the installed library version, otherwise we never do anything in this step. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 9525b6eab3..b9f248aa74 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,5 +54,6 @@ script: - sudo make install - echo -en 'travis_fold:end:script.install\\r' - echo 'Testing installation...' && echo -en 'travis_fold:start:script.testinstall\\r' + - make -C samples/minimal -f makefile.unx clean - make -C samples/minimal -f makefile.unx $wxMAKEFILE_FLAGS - echo -en 'travis_fold:end:script.testinstall\\r'