Build on latest gcc

This commit is contained in:
2020-02-01 17:04:23 +00:00
parent aae6d31e63
commit 6c75bc4b43
+13
View File
@@ -4,9 +4,22 @@ image: gcc:6.5
pipelines:
default:
- step:
name: Build on GCC 6.5
image: gcc:6.5
script:
- apt-get -qq update && apt-get -y -qq install cmake
- git submodule update --init
- mkdir build; cd build
- cmake ..
- make
- step:
name: Build on GCC latest
image: gcc:latest
script:
- gcc --version
- apt-get -qq update && apt-get -y -qq install cmake
- git submodule update --init
- mkdir build; cd build
- cmake ..
- make