Select Git revision
gcc10-mpi-coverage.yml
-
Stéphane Del Pino authored
- merge build and test targets: this avoids recompiling most of the same files twice in the same conditions (build have been removed) - remove gcc-debug targets. Actually gcc-coverage use debug options This should lead to faster ci runs
Stéphane Del Pino authored- merge build and test targets: this avoids recompiling most of the same files twice in the same conditions (build have been removed) - remove gcc-debug targets. Actually gcc-coverage use debug options This should lead to faster ci runs
gcc10-mpi-coverage.yml 419 B
coverage:gcc10-mpi-coverage:
image: localhost:5000/ubuntu_gcc10_mpi
stage: coverage
needs: []
script:
- mkdir -p build/gcc10-cov-mpi
- cd build/gcc10-cov-mpi
- CXX=g++-10 CC=gcc-10 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage
- make -j 4
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-cov-mpi"
paths:
- build/gcc10-cov-mpi
untracked: true
coverage: '/^\s*Total:\|(\d*\.\d|\d*)\%.*$/'