mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2024-12-12 18:10:27 +01:00
88184d142b
Because this runs apt-get, it will not work as-is for OSX. So when we have OSX in Travis, we will have to wrap this somehow. See #250. Closes #222.
26 lines
692 B
YAML
26 lines
692 B
YAML
# 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 -y cmake
|
|
# cmake is pre-installed in Travis for both linux and osx
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq valgrind
|
|
os:
|
|
- linux
|
|
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
script: ./travis.sh
|
|
env:
|
|
matrix:
|
|
- SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
|
|
- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
|
|
notifications:
|
|
email:
|
|
- aaronjjacobs@gmail.com
|