ovni/.gitlab-ci.yml

86 lines
1.5 KiB
YAML
Raw Permalink Normal View History

build:debian-testing:
image: debian:testing
tags:
- docker
2021-12-10 11:48:02 +01:00
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
2021-12-10 11:48:02 +01:00
- cmake --build build --target install
artifacts:
paths:
- install/
2022-01-11 17:43:59 +01:00
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:
2022-12-19 11:24:18 +01:00
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.asan
2022-12-19 11:24:18 +01:00
build:ubsan:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.ubsan
build:nompi:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.nompi
build:compilers:
2022-01-11 17:43:59 +01:00
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.compilers
build:armv7:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.armv7
build:aarch64:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.aarch64
build:riscv64:
stage: build
tags:
- nix
script:
- nix build -L --no-link .#ovniPackages.riscv64