We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988af4f commit 56a5071Copy full SHA for 56a5071
1 file changed
.travis.yml
@@ -1,12 +1,4 @@
1
dist: bionic
2
-
3
-addons:
4
- apt:
5
- sources:
6
- - sourceline: 'ppa:ubuntu-toolchain-r/test'
7
- - packages:
8
- - gcc-9
9
- - g++-9
10
11
language: cpp
12
@@ -27,7 +19,10 @@ matrix:
27
19
- MATRIX_EVAL="CC=clang && CXX=clang++"
28
20
29
21
before_install:
30
- - eval "${MATRIX_EVAL}"
22
+ - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
23
+ - sudo apt-get update -q
24
+ - sudo apt-get install g++-9 -y
25
+ - eval "${MATRIX_EVAL}"
31
26
32
before_script:
33
- mkdir build
0 commit comments