2021-07-26 03:14:23 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: Test NixOS configurations
|
|
|
|
|
2021-07-26 03:34:45 +02:00
|
|
|
node:
|
|
|
|
nix: true
|
|
|
|
|
2021-07-26 03:14:23 +02:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-07-26 03:42:16 +02:00
|
|
|
- name: Build core-services-01 configuration
|
2021-07-26 03:14:23 +02:00
|
|
|
commands:
|
2021-07-26 03:39:44 +02:00
|
|
|
- "export NIX_PATH=nixpkgs=/var/nixpkgs"
|
|
|
|
- "echo Building core-services-01 && nix-build krops.nix -A test-core-services-01 && ./result"
|
2021-07-28 23:55:34 +02:00
|
|
|
- name: Build remote-builder-01 configuration
|
|
|
|
commands:
|
|
|
|
- "export NIX_PATH=nixpkgs=/var/nixpkgs"
|
|
|
|
- "echo Building remote-builder-01 && nix-build krops.nix -A test-remote-builder-01 && ./result"
|
2021-07-26 03:14:23 +02:00
|
|
|
|
|
|
|
...
|