Skip to content
Snippets Groups Projects
Commit 0a2da520 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Begin splitting of .gitlab-ci.yml file

parent 31a66e81
No related branches found
No related tags found
1 merge request!19Feature/ci
......@@ -6,33 +6,8 @@ stages:
variables:
CTEST_OUTPUT_ON_FAILURE: 1
build:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: build
script:
- mkdir -p build/gcc8-dbg
- cd build/gcc8-dbg
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-dbg"
paths:
- build/gcc8-dbg
untracked: true
test:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: test
dependencies:
- build:gcc8-seq-dbg
script:
- cd build/gcc8-dbg
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-dbg"
paths:
- build/gcc8-dbg
untracked: true
include:
- local: '/.gitlab-ci/gcc8-seq-dbg.yml'
build:clang8-seq-coverage:
image: localhost:5000/ubuntu_clang8
......
build:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: build
script:
- mkdir -p build/gcc8-dbg
- cd build/gcc8-dbg
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-dbg"
paths:
- build/gcc8-dbg
untracked: true
test:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: test
dependencies:
- build:gcc8-seq-dbg
script:
- cd build/gcc8-dbg
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-dbg"
paths:
- build/gcc8-dbg
untracked: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment