Skip to content
This repository was archived by the owner on Dec 7, 2024. It is now read-only.

Commit 738849b

Browse files
committed
Update .travis.yml
1 parent f19e382 commit 738849b

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.travis.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
sudo: false
12
language: cpp
23
compiler:
34
- gcc
4-
5-
before_install:
6-
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
7-
- sudo apt-get update -qq
8-
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.9; fi
9-
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
10-
- sudo pip install cpp-coveralls pyyaml
11-
- sudo apt-get install valgrind
5+
install:
6+
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
7+
addons:
8+
apt:
9+
sources:
10+
- ubuntu-toolchain-r-test
11+
packages:
12+
- gcc-4.8
13+
- g++-4.8
14+
- valgrind
1215

1316
script:
1417
- cmake .

0 commit comments

Comments
 (0)