Skip to content

Commit

Permalink
Adding gcc 5 and 6 on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blowekamp committed Nov 23, 2016
1 parent 31819e3 commit c5383b6
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

language: cpp

env:
Expand All @@ -18,6 +17,22 @@ matrix:
- os: linux
dist: trusty
sudo: required
- os: linux
env: CI_CXX=g++-6 CI_CCC=gcc-6
sudo: required
dist: trusty
addons:
apt:
packages:
- g++-6
- os: linux
env: CI_CXX=g++-5 CI_CCC=gcc-5
sudo: required
dist: trusty
addons:
apt:
packages:
- g++-5
- os: osx
osx_image: xcode7.3

Expand All @@ -28,6 +43,10 @@ before_install:

before_script:
- cmake --version
- if [[ -n "$CI_CC" ]]; then export CC="$CI_CC"; fi
- if [[ -n "$CI_CXX" ]]; then export CXX="$CI_CXX"; fi
- ls -la $(which $CXX)
- $CXX --version
- env
- bash -x ${PROJ_SRC}/test/ci/CacheAndUpdateITK.sh

Expand Down

0 comments on commit c5383b6

Please sign in to comment.