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

Commit 29ba99e

Browse files
committed
Fix travis build to actually use gcc5
1 parent bf7ff62 commit 29ba99e

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

Diff for: .travis.yml

+14-10
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ matrix:
3030
env:
3131
# NAME has no actual use, just to make the travis jobs overview more clear
3232
- NAME="gcc5 Debug/Tests/AddressSanitizer/Coveralls"
33-
- CXX=g++-5
34-
- CC=gcc-5
35-
- PELOTON_BUILD_TYPE=Debug
36-
- SANITIZER=Address
37-
- COVERALLS=On
33+
# set env variables manually
34+
before_install:
35+
- export CXX=g++-5
36+
- export CC=gcc-5
37+
- export PELOTON_BUILD_TYPE=Debug
38+
- export SANITIZER=Address
39+
- export COVERALLS=On
3840

3941
- os: linux
4042
sudo: required
@@ -50,11 +52,13 @@ matrix:
5052
env:
5153
# NAME has no actual use, just to make the travis jobs overview more clear
5254
- NAME="gcc5 Release/Tests/AddressSanitizer"
53-
- CXX=g++-5
54-
- CC=gcc-5
55-
- PELOTON_BUILD_TYPE=Release
56-
- SANITIZER=
57-
- COVERALLS=Off
55+
# set env variables manually
56+
before_install:
57+
- export CXX=g++-5
58+
- export CC=gcc-5
59+
- export PELOTON_BUILD_TYPE=Release
60+
- export SANITIZER=
61+
- export COVERALLS=Off
5862

5963
install:
6064
# setup environment

0 commit comments

Comments
 (0)