Skip to content

Commit

Permalink
BUILD: Increase CMake verbosity
Browse files Browse the repository at this point in the history
For some reason, the CMake build fails to link, because of missing
pthread?
  • Loading branch information
DrMcCoy committed Dec 27, 2017
1 parent 74fa731 commit 8d6f6ce
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,14 @@ script:
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 0 \) ]; then ./configure || cat config.log; fi
# Configure, CMake
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 1 \) ]; then cmake .; fi
# Compile
- if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -j4; fi
# Compile, autotools
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 0 \) ]; then make -j4; fi
# Compile, CMake
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 1 \) ]; then make VERBOSE=1 -j4; fi
# Unit tests, autotools
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 0 \) ]; then echo "" > test-suite.log; make -j4 check || cat test-suite.log; fi
# Unit tests, CMake
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 1 \) ]; then make -j4 check; fi
- if [ \( "$COVERITY_SCAN_BRANCH" != 1 \) -a \( $USECMAKE -eq 1 \) ]; then make VERBOSE=1 -j4 check; fi

addons:
coverity_scan:
Expand Down

0 comments on commit 8d6f6ce

Please sign in to comment.