We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31819e3 commit c5383b6Copy full SHA for c5383b6
.travis.yml
@@ -1,4 +1,3 @@
1
-
2
language: cpp
3
4
env:
@@ -18,6 +17,22 @@ matrix:
18
17
- os: linux
19
dist: trusty
20
sudo: required
+ - os: linux
21
+ env: CI_CXX=g++-6 CI_CCC=gcc-6
22
+ sudo: required
23
+ dist: trusty
24
+ addons:
25
+ apt:
26
+ packages:
27
+ - g++-6
28
29
+ env: CI_CXX=g++-5 CI_CCC=gcc-5
30
31
32
33
34
35
+ - g++-5
36
- os: osx
37
osx_image: xcode7.3
38
@@ -28,6 +43,10 @@ before_install:
43
44
before_script:
45
- cmake --version
46
+ - if [[ -n "$CI_CC" ]]; then export CC="$CI_CC"; fi
47
+ - if [[ -n "$CI_CXX" ]]; then export CXX="$CI_CXX"; fi
48
+ - ls -la $(which $CXX)
49
+ - $CXX --version
50
- env
51
- bash -x ${PROJ_SRC}/test/ci/CacheAndUpdateITK.sh
52
0 commit comments