Skip to content
Snippets Groups Projects
Commit 2292e8aa authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Update CI config (uses ubuntu:jammy, cmake-3.22 clang11 and g++10)

parent 7eb04198
No related branches found
No related tags found
1 merge request!199Integrate checkpointing
...@@ -6,8 +6,8 @@ variables: ...@@ -6,8 +6,8 @@ variables:
CTEST_OUTPUT_ON_FAILURE: 1 CTEST_OUTPUT_ON_FAILURE: 1
include: include:
- local: '/.gitlab-ci/clang10-mpi-debug.yml' - local: '/.gitlab-ci/clang11-mpi-debug.yml'
- local: '/.gitlab-ci/clang10-mpi-release.yml' - local: '/.gitlab-ci/clang11-mpi-release.yml'
- local: '/.gitlab-ci/gcc10-mpi-coverage.yml' - local: '/.gitlab-ci/gcc10-mpi-coverage.yml'
- local: '/.gitlab-ci/gcc10-mpi-release.yml' - local: '/.gitlab-ci/gcc10-mpi-release.yml'
- local: '/.gitlab-ci/gcc10-seq-coverage.yml' - local: '/.gitlab-ci/gcc10-seq-coverage.yml'
......
test:clang10-mpi-debug:
image: localhost:5000/ubuntu_clang10_mpi
stage: test
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 -j 4
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths:
- build/clang10-debug-mpi
untracked: true
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 -j 4
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-release-mpi"
paths:
- build/clang10-release-mpi
untracked: true
test:clang11-mpi-debug:
image: localhost:5000/ubuntu_jammy_clang11_mpi
stage: test
needs: []
script:
- mkdir -p build/clang11-debug-mpi
- cd build/clang11-debug-mpi
- CXX=clang++-11 CC=clang-11 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make -j 4
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang11-debug-mpi"
paths:
- build/clang11-debug-mpi
untracked: true
test:clang11-mpi-release:
image: localhost:5000/ubuntu_jammy_clang11_mpi
stage: test
needs: []
script:
- mkdir -p build/clang11-release-mpi
- cd build/clang11-release-mpi
- CXX=clang++-11 CC=clang-11 cmake ../.. -DCMAKE_BUILD_TYPE=Release -DCLANG_FORMAT=/usr/bin/clang-format-11
- make -j 4
- make check
cache:
key: "${CI_COMMIT_REF_SLUG}-clang11-release-mpi"
paths:
- build/clang11-release-mpi
untracked: true
coverage:gcc10-mpi-coverage: coverage:gcc10-mpi-coverage:
image: localhost:5000/ubuntu_gcc10_mpi image: localhost:5000/ubuntu_jammy_gcc10_mpi
stage: coverage stage: coverage
needs: [] needs: []
script: script:
......
test:gcc10-mpi-release: test:gcc10-mpi-release:
image: localhost:5000/ubuntu_gcc10_mpi image: localhost:5000/ubuntu_jammy_gcc10_mpi
stage: test stage: test
needs: [] needs: []
script: script:
......
coverage:gcc10-seq-coverage: coverage:gcc10-seq-coverage:
image: localhost:5000/ubuntu_gcc10 image: localhost:5000/ubuntu_jammy_gcc10
stage: coverage stage: coverage
needs: [] needs: []
script: script:
......
test:gcc10-seq-release: test:gcc10-seq-release:
image: localhost:5000/ubuntu_gcc10 image: localhost:5000/ubuntu_jammy_gcc10
stage: test stage: test
needs: [] needs: []
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment