ovni/.gitlab-ci.yml
Rodrigo Arias Mallo d100b42e5a Port nix CI to flakes
Change bscpkgs repo url to sourcehut
2023-10-19 11:18:45 +02:00

58 lines
1.1 KiB
YAML

build:debian-testing:
image: debian:testing
tags:
- docker
stage: build
before_script:
- apt update && apt -y install make autoconf gfortran libopenmpi-dev cmake
script:
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=install -S . -B build
- cmake --build build
- CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test
- cmake --build build --target install
artifacts:
paths:
- install/
build:local:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.local
build:rt:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.rt
build:debug:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.debug
build:asan:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.asan
build:nompi:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.nompi
build:compilers:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.compilers