summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorLudovic Rousseau <ludovic.rousseau@free.fr>2016-02-27 17:17:24 +0100
committerLudovic Rousseau <ludovic.rousseau@free.fr>2016-03-02 16:07:22 +0100
commit765a1fbf8b80c62b98e05e6d89cbe5fe32d76169 (patch)
tree22509235bc480cb130b681af622b050a9b549168 /.travis.yml
parent686ccc284b9c54984fce6a8d2a29d020ede773a9 (diff)
downloadlibusb-765a1fbf8b80c62b98e05e6d89cbe5fe32d76169.tar.gz
travis-CI: fails compilation on warning
The travis-autogen.sh script enable some extra warnings not used by default. The idea is to detect problem as early as possible.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 2745538..585cd6f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,5 +23,5 @@ addons:
script:
- ./autogen.sh && make -j4
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./autogen.sh --disable-udev && make -j4; fi
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./travis-autogen.sh --disable-udev && make -j4; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cd Xcode && xcodebuild -project libusb.xcodeproj ; fi