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

Fix travis build to actually use gcc5 #1330

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ matrix:
env:
# NAME has no actual use, just to make the travis jobs overview more clear
- NAME="gcc5 Debug/Tests/AddressSanitizer/Coveralls"
- CXX=g++-5
- CC=gcc-5
- PELOTON_BUILD_TYPE=Debug
- SANITIZER=Address
- COVERALLS=On
# set env variables manually
before_install:
- export CXX=g++-5
- export CC=gcc-5
- export PELOTON_BUILD_TYPE=Debug
- export SANITIZER=Address
- export COVERALLS=On

- os: linux
sudo: required
Expand All @@ -50,11 +52,13 @@ matrix:
env:
# NAME has no actual use, just to make the travis jobs overview more clear
- NAME="gcc5 Release/Tests/AddressSanitizer"
- CXX=g++-5
- CC=gcc-5
- PELOTON_BUILD_TYPE=Release
- SANITIZER=
- COVERALLS=Off
# set env variables manually
before_install:
- export CXX=g++-5
- export CC=gcc-5
- export PELOTON_BUILD_TYPE=Release
- export SANITIZER=
- export COVERALLS=Off

install:
# setup environment
Expand Down