Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit d4f4e05

Browse files
committed
Fix travis build to actually use gcc5
1 parent 801df5f commit d4f4e05

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.travis.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ matrix:
2929
env:
3030
# NAME has no actual use, just to make the travis jobs overview more clear
3131
- NAME="gcc5 Debug/Tests/AddressSanitizer/Coveralls"
32-
- CXX=g++-5
33-
- CC=gcc-5
34-
- PELOTON_BUILD_TYPE=Debug
35-
- COVERALLS=On
32+
# set env variables manually
33+
before_install:
34+
- export CXX=g++-5
35+
- export CC=gcc-5
36+
- export PELOTON_BUILD_TYPE=Debug
37+
- export COVERALLS=On
3638
# override script value to run also tests and benchmarks
3739
script:
3840
# create build directory
@@ -72,10 +74,12 @@ matrix:
7274
env:
7375
# NAME has no actual use, just to make the travis jobs overview more clear
7476
- NAME="gcc5 Release/Tests/AddressSanitizer"
75-
- CXX=g++-5
76-
- CC=gcc-5
77-
- PELOTON_BUILD_TYPE=Release
78-
- COVERALLS=Off
77+
# set env variables manually
78+
before_install:
79+
- export CXX=g++-5
80+
- export CC=gcc-5
81+
- export PELOTON_BUILD_TYPE=Release
82+
- export COVERALLS=Off
7983
# override script value to run also tests and benchmarks
8084
script:
8185
# create build directory

0 commit comments

Comments
 (0)