Skip to content
Snippets Groups Projects

Change CI pipeline

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

Files

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