Skip to content
Snippets Groups Projects
.gitlab-ci.yml 310 B
docs:
  stage: "build"
  script:
    - "nix-shell --run 'nix-build docs.nix'"

unit-tests:
  stage: "test"
  script:
    - "nix-shell --run 'nix-build nixos/unit-tests.nix' && cat result"

system-tests:
  stage: "test"
  timeout: "3 hours"
  script:
    - "nix-shell --run 'nix-build nixos/system-tests.nix'"