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

Add gcc8-seq-release target

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