Skip to content
Snippets Groups Projects

Change CI pipeline

8 files
+ 15
100
Compare changes
  • Side-by-side
  • Inline

Files

  • 6e763f14
    Change CI pipeline · 6e763f14
    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
+ 3
17
build:clang10-mpi-debug:
image: localhost:5000/ubuntu_clang10_mpi
stage: build
needs: []
script:
- mkdir -p build/clang10-debug-mpi
- cd build/clang10-debug-mpi
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths:
- build/clang10-debug-mpi
untracked: true
test:clang10-mpi-debug:
image: localhost:5000/ubuntu_clang10_mpi
stage: test
needs: ["build:clang10-mpi-debug"]
needs: []
script:
- mkdir -p build/clang10-debug-mpi
- cd build/clang10-debug-mpi
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make test
- make
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths:
Loading