File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
-
2
1
language : cpp
3
2
4
3
env :
@@ -18,6 +17,28 @@ matrix:
18
17
- os : linux
19
18
dist : trusty
20
19
sudo : required
20
+ - os : linux
21
+ env : CI_CXX=g++-6 CI_CCC=gcc-6
22
+ sudo : required
23
+ dist : trusty
24
+ addons :
25
+ apt :
26
+ sources :
27
+ # add PPAs with more up-to-date toolchains
28
+ - ubuntu-toolchain-r-test
29
+ packages :
30
+ - g++-6
31
+ - os : linux
32
+ env : CI_CXX=g++-5 CI_CCC=gcc-5
33
+ sudo : required
34
+ dist : trusty
35
+ addons :
36
+ sources :
37
+ # add PPAs with more up-to-date toolchains
38
+ - ubuntu-toolchain-r-test
39
+ apt :
40
+ packages :
41
+ - g++-5
21
42
- os : osx
22
43
osx_image : xcode7.3
23
44
@@ -28,6 +49,10 @@ before_install:
28
49
29
50
before_script :
30
51
- cmake --version
52
+ - if [[ -n "$CI_CC" ]]; then export CC="$CI_CC"; fi
53
+ - if [[ -n "$CI_CXX" ]]; then export CXX="$CI_CXX"; fi
54
+ - ls -la $(which $CXX)
55
+ - $CXX --version
31
56
- env
32
57
- bash -x ${PROJ_SRC}/test/ci/CacheAndUpdateITK.sh
33
58
You can’t perform that action at this time.
0 commit comments