summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-06-05 15:25:37 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-06-06 12:36:08 +0200
commit56eee9a1b4c7787d9d72f2701653ae3464c84669 (patch)
tree08aefa79c1a35736fed1fe8d90c9d3ea2bc35ad1
parentde0adda78c4c3ce6d221beefdcd4492412dcf287 (diff)
downloadcurl-bagder/travis-normal-debug.tar.gz
travis: let some builds *not* use --enable-debugbagder/travis-normal-debug
-rw-r--r--.travis.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 7069e1ed6..080f5fc13 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,7 @@ matrix:
include:
- os: linux
compiler: gcc
- env: BUILD_TYPE=normal
+ env: BUILD_TYPE=debug
- os: linux
compiler: clang
env: BUILD_TYPE=normal
@@ -25,7 +25,7 @@ matrix:
env: BUILD_TYPE=normal
- os: osx
compiler: clang
- env: BUILD_TYPE=normal
+ env: BUILD_TYPE=debug
- os: linux
compiler: gcc
dist: trusty
@@ -62,12 +62,18 @@ script:
coveralls --gcov /usr/bin/gcov-4.8 --gcov-options '\-lp' -i src -i lib -i lib/vtls -i lib/vauth -e tests -e docs
fi
- |
- if [ "$BUILD_TYPE" = "normal" ]; then
+ if [ "$BUILD_TYPE" = "debug" ]; then
./configure --enable-debug
make
make TFLAGS=-n test-nonflaky
fi
- |
+ if [ "$BUILD_TYPE" = "normal" ]; then
+ ./configure
+ make
+ make TFLAGS=-n test-nonflaky
+ fi
+ - |
if [ "$BUILD_TYPE" = "cmake" ]; then
mkdir build
cd build