Select Git revision
.gitlab-ci.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
.gitlab-ci.yml 367 B
stages:
- test
- coverage
variables:
CTEST_OUTPUT_ON_FAILURE: 1
include:
- local: '/.gitlab-ci/clang10-mpi-debug.yml'
- local: '/.gitlab-ci/clang10-mpi-release.yml'
- local: '/.gitlab-ci/gcc10-mpi-coverage.yml'
- local: '/.gitlab-ci/gcc10-mpi-release.yml'
- local: '/.gitlab-ci/gcc10-seq-coverage.yml'
- local: '/.gitlab-ci/gcc10-seq-release.yml'