Select Git revision
-
Stéphane Del Pino authored
subrepo: subdir: "packages/HighFive" merged: "0e308c244" upstream: origin: "git@github.com:highfive-devs/HighFive.git" branch: "main" commit: "0e308c244" git-subrepo: version: "0.4.9" origin: "git@github.com:ingydotnet/git-subrepo.git" commit: "30db3b8"
Stéphane Del Pino authoredsubrepo: subdir: "packages/HighFive" merged: "0e308c244" upstream: origin: "git@github.com:highfive-devs/HighFive.git" branch: "main" commit: "0e308c244" git-subrepo: version: "0.4.9" origin: "git@github.com:ingydotnet/git-subrepo.git" commit: "30db3b8"
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