Select Git revision
gcc10-mpi-debug.yml
-
Stéphane Del Pino authored
Do not use `ctest` anymore, tests are now launch directly (manually) using generated unit tests binaries (unit_tests and mpi_unit_tests) `ctest` can always be invoked but not using `make test`. The reason for this change is that `ctest` runs a binary for each test which is not what we want now. The goal of this development is to provide a mesh database that is built **once** for all: the cost of building meshes could be prohibitive and their multiplication should be avoided for obvious performances and storage reasons.
Stéphane Del Pino authoredDo not use `ctest` anymore, tests are now launch directly (manually) using generated unit tests binaries (unit_tests and mpi_unit_tests) `ctest` can always be invoked but not using `make test`. The reason for this change is that `ctest` runs a binary for each test which is not what we want now. The goal of this development is to provide a mesh database that is built **once** for all: the cost of building meshes could be prohibitive and their multiplication should be avoided for obvious performances and storage reasons.
gcc10-mpi-debug.yml 758 B
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 test
cache:
key: "${CI_COMMIT_REF_SLUG}-gcc10-debug-mpi"
paths:
- build/gcc10-debug-mpi
untracked: true