forked from open-source-parsers/jsoncpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added continuous integration matrix for debug/release build. Made sta…
…tic debug build verbose.
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# Build matrix / environment variable are explained on: | ||
# http://about.travis-ci.org/docs/user/build-configuration/ | ||
# This file can be validated on: | ||
# http://lint.travis-ci.org/ | ||
before_install: sudo apt-get install cmake | ||
language: cpp | ||
compiler: | ||
- gcc | ||
- clang | ||
script: cmake -DJSONCPP_LIB_BUILD_SHARED=$SHARED_LIBRARY . && make | ||
script: cmake -DJSONCPP_LIB_BUILD_SHARED=$SHARED_LIBRARY -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_MAKE. && make | ||
env: | ||
global: | ||
- JSONCPP_CONTINUOUS_INTERATION=1 | ||
matrix: | ||
- SHARED_LIBRARY=ON | ||
- SHARED_LIBRARY=OFF | ||
- SHARED_LIBRARY=ON BUILD_TYPE=release VERBOSE_MAKE=false | ||
- SHARED_LIBRARY=OFF BUILD_TYPE=release VERBOSE_MAKE=false | ||
- SHARED_LIBRARY=OFF BUILD_TYPE=debug VERBOSE VERBOSE_MAKE=true | ||
notifications: | ||
recipients: | ||
- [email protected] | ||
|