more compilers
This commit is contained in:
parent
be05dbe618
commit
6150ffb9dc
1 changed files with 36 additions and 0 deletions
36
.travis.yml
36
.travis.yml
|
@ -16,12 +16,34 @@ sudo: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
|
||||||
|
# OSX / Clang
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: beta-xcode6.1
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: beta-xcode6.2
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: beta-xcode6.3
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: xcode6.4
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: xcode7.1
|
||||||
|
|
||||||
|
- os: osx
|
||||||
|
osx_image: xcode7.2
|
||||||
|
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode7.3
|
osx_image: xcode7.3
|
||||||
|
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode8
|
osx_image: xcode8
|
||||||
|
|
||||||
|
# Linux / GCC
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env: COMPILER=g++-4.9
|
env: COMPILER=g++-4.9
|
||||||
|
@ -38,6 +60,14 @@ matrix:
|
||||||
sources: ['ubuntu-toolchain-r-test']
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
packages: g++-5
|
packages: g++-5
|
||||||
|
|
||||||
|
- os: linux
|
||||||
|
compiler: gcc
|
||||||
|
env: COMPILER=g++-6
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
|
packages: g++-6
|
||||||
|
|
||||||
|
|
||||||
#####################
|
#####################
|
||||||
# installation step #
|
# installation step #
|
||||||
|
@ -56,6 +86,12 @@ script:
|
||||||
- $CXX --version
|
- $CXX --version
|
||||||
- make
|
- make
|
||||||
- test/json_unit
|
- test/json_unit
|
||||||
|
- if [ `which brew` ]; then
|
||||||
|
brew update ;
|
||||||
|
brew tap nlohmann/json ;
|
||||||
|
brew install nlohmann_json --HEAD ;
|
||||||
|
brew test nlohmann_json ;
|
||||||
|
fi
|
||||||
|
|
||||||
#language: cpp
|
#language: cpp
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue