diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-23 22:21:24 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-23 22:21:24 +0200 |
commit | 5858ebc6da54fe24ba6dab61f1478c812bfa6fb2 (patch) | |
tree | 6a242e85f4bda83d33d71802935731b9a02a28e1 /.travis.yml | |
parent | 4a440feaf5c4ff7ac8d944a7a9832444fca924d3 (diff) | |
parent | 1ffe92a6ff947713e5937fd272bf4f7b09a88ae5 (diff) | |
download | nx-libs-5858ebc6da54fe24ba6dab61f1478c812bfa6fb2.tar.gz nx-libs-5858ebc6da54fe24ba6dab61f1478c812bfa6fb2.tar.bz2 nx-libs-5858ebc6da54fe24ba6dab61f1478c812bfa6fb2.zip |
Merge branch 'mjtrangoni-add-gcc-9' into 3.6.x
Attributes GH PR #820: https://github.com/ArcticaProject/nx-libs/pull/820
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index ef3f9fcc8..687042e57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ matrix: sources: - ubuntu-toolchain-r-test packages: - - g++-8 + - g++-9 # imake - xutils-dev # X11 libaries @@ -56,7 +56,7 @@ matrix: - x11-xkb-utils env: - - MATRIX_EVAL="CC=gcc-8 && CXX=g++-8" + - MATRIX_EVAL="CC=gcc-9 && CXX=g++-9" - STATIC_ANALYSIS="no" - os: linux @@ -117,5 +117,7 @@ before_install: script: # run static analysis tools - ./run-static-analysis.sh + # print compiler version + - ${CC} --version # build all packages - make |