Select Git revision
clang10-mpi-release.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
clang10-mpi-release.yml 448 B
test:clang10-mpi-release:
image: localhost:5000/ubuntu_clang10_mpi
stage: test
needs: []
script:
- mkdir -p build/clang10-release-mpi
- cd build/clang10-release-mpi
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Release -DCLANG_FORMAT=/usr/bin/clang-format-10
- make
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-release-mpi"
paths:
- build/clang10-release-mpi
untracked: true