Select Git revision
clang10-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.
clang10-mpi-debug.yml 796 B
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 test
cache:
key: "${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths:
- build/clang10-debug-mpi
untracked: true