Skip to content

Commit

Permalink
adding ubuntu 16.04 and debug variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ingowald committed Jan 26, 2019
1 parent b572873 commit 1aa358f
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
stages:
- build

docker-test:
ubuntu18-gcc-release:
stage: build
tags:
- docker
Expand All @@ -15,3 +15,49 @@ docker-test:
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make

ubuntu18-gcc-debug:
stage: build
tags:
- docker
image: ubuntu:18.04
script:
- apt -y update
- apt -y install cmake g++
- mkdir build-gcc-debug
- cd build-gcc-debug
- export CXX=g++
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- make





ubuntu16-gcc-release:
stage: build
tags:
- docker
image: ubuntu:16.04
script:
- apt -y update
- apt -y install cmake g++
- mkdir build-gcc-release
- cd build-gcc-release
- export CXX=g++
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make

ubuntu16-gcc-debug:
stage: build
tags:
- docker
image: ubuntu:16.04
script:
- apt -y update
- apt -y install cmake g++
- mkdir build-gcc-debug
- cd build-gcc-debug
- export CXX=g++
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- make

0 comments on commit 1aa358f

Please sign in to comment.