We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a812b3 commit 0664ccfCopy full SHA for 0664ccf
.travis.yml
@@ -84,6 +84,28 @@ jobs:
84
- EXTRA_CXXFLAGS="-D_GLIBCXX_DEBUG"
85
script: echo "Tests are run in the next stage."
86
87
+ # cmake build using g++-5
88
+ - stage: Linter + Doxygen + non-debug Ubuntu/gcc-5 build
89
+ os: linux
90
+ compiler: gcc
91
+ cache: ccache
92
+ env:
93
+ - BUILD_SYSTEM=cmake
94
+ addons:
95
+ apt:
96
+ sources:
97
+ - ubuntu-toolchain-r-test
98
+ packages:
99
+ - g++-5
100
+ before_install:
101
+ - mkdir bin ; ln -s /usr/bin/gcc-5 bin/gcc
102
+ install:
103
+ - ccache -z
104
+ - ccache --max-size=1G
105
+ - cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_CXX_COMPILER=/usr/bin/g++-5'
106
+ - cmake --build build -- -j4
107
+ script: echo "Tests are run in the next stage."
108
+
109
# Ubuntu Linux with glibc using g++-5
110
- stage: Test different OS/CXX/Flags
111
os: linux
0 commit comments