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

Remove gcc-8 from continuous integration targets

Coverage is now performed using gcc10/fastcov
parent 527a5b39
No related branches found
No related tags found
1 merge request!50Update/gitlab ci
......@@ -7,11 +7,11 @@ variables:
CTEST_OUTPUT_ON_FAILURE: 1
include:
- local: '/.gitlab-ci/gcc8-seq-dbg.yml'
- local: '/.gitlab-ci/gcc8-seq-release.yml'
- local: '/.gitlab-ci/clang10-seq-release.yml'
- local: '/.gitlab-ci/clang10-mpi-debug.yml'
- local: '/.gitlab-ci/clang10-mpi-release.yml'
- local: '/.gitlab-ci/clang10-seq-coverage.yml'
- local: '/.gitlab-ci/clang10-mpi-coverage.yml'
- local: '/.gitlab-ci/gcc10-seq-release.yml'
- local: '/.gitlab-ci/clang10-seq-release.yml'
- local: '/.gitlab-ci/gcc10-mpi-debug.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'
coverage:clang10-mpi-coverage:
image: localhost:5000/ubuntu_clang10_mpi
stage: coverage
script:
- mkdir -p build/clang10-cov-mpi
- cd build/clang10-cov-mpi
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage -DCLANG_FORMAT=/usr/bin/clang-format-10
- make pugs
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-cov-mpi"
paths:
- build/clang10-cov-mpi
untracked: true
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"]
script:
- mkdir -p build/clang10-debug-mpi
- cd build/clang10-debug-mpi
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths:
- build/clang10-debug-mpi
untracked: true
coverage:clang10-seq-coverage:
image: localhost:5000/ubuntu_clang10
stage: coverage
script:
- mkdir -p build/clang10-cov
- cd build/clang10-cov
- CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage -DCLANG_FORMAT=/usr/bin/clang-format-10
- make pugs
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-cov"
paths:
- build/clang10-cov
untracked: true
coverage:gcc10-mpi-coverage:
image: localhost:5000/ubuntu_gcc10_mpi
stage: coverage
script:
- mkdir -p build/gcc10-cov-mpi
- cd build/gcc10-cov-mpi
- CXX=g++-10 CC=gcc-10 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage
- make pugs
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-cov-mpi"
paths:
- build/gcc10-cov-mpi
untracked: true
build:gcc10-mpi-debug:
image: localhost:5000/ubuntu_gcc10_mpi
stage: build
needs: []
script:
- mkdir -p build/gcc10-debug-mpi
- cd build/gcc10-debug-mpi
- CXX=g++-10 CC=gcc-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-debug-mpi"
paths:
- build/gcc10-debug-mpi
untracked: true
test:gcc10-mpi-debug:
image: localhost:5000/ubuntu_gcc10_mpi
stage: test
needs: ["build:gcc10-mpi-debug"]
script:
- mkdir -p build/gcc10-debug-mpi
- cd build/gcc10-debug-mpi
- CXX=g++-10 CC=gcc-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-debug-mpi"
paths:
- build/gcc10-debug-mpi
untracked: true
coverage:gcc10-seq-coverage:
image: localhost:5000/ubuntu_gcc10
stage: coverage
script:
- mkdir -p build/gcc10-cov
- cd build/gcc10-cov
- CXX=g++-10 CC=gcc-10 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage
- make pugs
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-cov"
paths:
- build/gcc10-cov
untracked: true
build:gcc8-seq-coverage:
image: localhost:5000/ubuntu_gcc8
stage: coverage
script:
- mkdir -p build/gcc8-seq-covrage
- cd build/gcc8-seq-covrage
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage
- make coverage
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-coverage"
paths:
- build/gcc8-seq-covrage
untracked: true
build:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: build
needs: []
script:
- mkdir -p build/gcc8-seq-dbg
- cd build/gcc8-seq-dbg
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-dbg"
paths:
- build/gcc8-seq-dbg
untracked: true
test:gcc8-seq-dbg:
image: localhost:5000/ubuntu_gcc8
stage: test
needs: ["build:gcc8-seq-dbg"]
script:
- mkdir -p build/gcc8-seq-dbg
- cd build/gcc8-seq-dbg
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-dbg"
paths:
- build/gcc8-seq-dbg
untracked: true
build:gcc8-seq-release:
image: localhost:5000/ubuntu_gcc8
stage: build
needs: []
script:
- mkdir -p build/gcc8-seq-release
- cd build/gcc8-seq-release
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Release
- make pugs
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-release"
paths:
- build/gcc8-seq-release
untracked: true
test:gcc8-seq-release:
image: localhost:5000/ubuntu_gcc8
stage: test
needs: ["build:gcc8-seq-release"]
script:
- mkdir -p build/gcc8-seq-release
- cd build/gcc8-seq-release
- CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Release
- make run_unit_tests
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-release"
paths:
- build/gcc8-seq-release
untracked: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment