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

Add MPI coverage pipeline

parent efd7e8f3
No related branches found
No related tags found
1 merge request!19Feature/ci
......@@ -60,3 +60,32 @@ test:clang8-seq-coverage:
paths:
- build/clang8-cov
untracked: true
build:clang8-mpi-coverage:
image: localhost:5000/ubuntu_clang8_mpi
stage: build
script:
- mkdir -p build/clang8-cov-mpi
- cd build/clang8-cov-mpi
- CXX=clang++-8 CC=clang-8 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage -DCLANG_FORMAT=/usr/bin/clang-format-8
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
paths:
- build/clang8-cov-mpi
untracked: true
test:clang8-mpi-coverage:
image: localhost:5000/ubuntu_clang8_mpi
stage: test
dependencies:
- build:clang8-mpi-coverage
script:
- cd build/clang8-cov-mpi
- make run_unit_tests
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
paths:
- build/clang8-cov-mpi
untracked: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment