2013-05-09 06:04:57 +08:00
|
|
|
# Build matrix / environment variable are explained on:
|
|
|
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
2013-05-09 06:15:15 +08:00
|
|
|
# This file can be validated on:
|
|
|
|
# http://lint.travis-ci.org/
|
2015-04-23 10:43:27 +08:00
|
|
|
|
|
|
|
#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
|
2013-05-09 04:46:56 +08:00
|
|
|
language: cpp
|
2013-05-09 05:04:42 +08:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
2015-04-23 10:43:27 +08:00
|
|
|
script: ./travis.sh
|
2013-05-09 06:04:57 +08:00
|
|
|
env:
|
|
|
|
matrix:
|
2015-02-08 02:18:20 +08:00
|
|
|
- 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
|
2013-05-09 05:23:52 +08:00
|
|
|
notifications:
|
|
|
|
email:
|
2014-06-30 17:57:59 +08:00
|
|
|
- aaronjjacobs@gmail.com
|