Skip to content

Commit

Permalink
[CI/FS] Check that cmake build works with gcc-8
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-Devel committed Nov 2, 2018
1 parent 1c9d8c1 commit 88ac1c4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,23 @@ matrix:
compiler: clang++
env: TOOLSET=clang CXXSTD=03,11,14,1z

- os: linux
compiler: g++
env: CMAKE=1
addons:
apt:
packages:
- libboost-filesystem-dev
- g++-8
sources:
- ubuntu-toolchain-r-test
install: true
script:
- export CC=gcc-8 && export CXX=g++-8
- mkdir __build__ && cd __build__
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~ ..
- cmake --build . --target install

- os: linux
compiler: g++
env: CMAKE=1
Expand Down

0 comments on commit 88ac1c4

Please sign in to comment.