We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c9d8c1 commit 88ac1c4Copy full SHA for 88ac1c4
.travis.yml
@@ -102,6 +102,23 @@ matrix:
102
compiler: clang++
103
env: TOOLSET=clang CXXSTD=03,11,14,1z
104
105
+ - os: linux
106
+ compiler: g++
107
+ env: CMAKE=1
108
+ addons:
109
+ apt:
110
+ packages:
111
+ - libboost-filesystem-dev
112
+ - g++-8
113
+ sources:
114
+ - ubuntu-toolchain-r-test
115
+ install: true
116
+ script:
117
+ - export CC=gcc-8 && export CXX=g++-8
118
+ - mkdir __build__ && cd __build__
119
+ - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~ ..
120
+ - cmake --build . --target install
121
+
122
- os: linux
123
compiler: g++
124
env: CMAKE=1
0 commit comments