Build on latest gcc

This commit is contained in:
Stefan Ritt 2020-02-01 17:04:23 +00:00
parent aae6d31e63
commit 6c75bc4b43

View File

@ -4,9 +4,22 @@ image: gcc:6.5
pipelines: pipelines:
default: default:
- step: - step:
name: Build on GCC 6.5
image: gcc:6.5
script: script:
- apt-get -qq update && apt-get -y -qq install cmake - apt-get -qq update && apt-get -y -qq install cmake
- git submodule update --init - git submodule update --init
- mkdir build; cd build - mkdir build; cd build
- cmake .. - cmake ..
- make - 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