From 83ef455532ed03ec8d7b53d3c781eebfed9f0d13 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Wed, 4 Jan 2017 17:51:04 +0100 Subject: [PATCH] travis: make clean before building Call "make clean" to be sure the compilation will be done even if some files were already compiled. The problem was that the travis script does a double ./configure + build on Linux. The second build just did nothing since the files were already compiled. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index eb08224..bb9e47a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,6 +46,6 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew upgrade automake libtool ; true; fi script: - - ./autogen.sh && make -j4 - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./travis-autogen.sh --disable-udev && make -j4; fi + - ./autogen.sh && make clean && make -j4 + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./travis-autogen.sh --disable-udev && make clean && make -j4; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cd Xcode && xcodebuild -project libusb.xcodeproj ; fi -- 2.7.4