poking at dev
This commit is contained in:
parent
d842d2a230
commit
715835d743
8 changed files with 239 additions and 8 deletions
27
.gitlab-ci.yml
Normal file
27
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
stages:
|
||||
- check
|
||||
- eval
|
||||
|
||||
variables:
|
||||
NIX_CONFIG: "experimental-features = nix-command flakes"
|
||||
|
||||
.default_nix:
|
||||
image: nixos/nix
|
||||
before_script:
|
||||
- nix --version
|
||||
- nix flake show
|
||||
- echo "Using host: $(hostname)"
|
||||
|
||||
flake-check:
|
||||
stage: check
|
||||
extends: .default_nix
|
||||
script:
|
||||
- nix flake check --all-systems
|
||||
|
||||
flake-eval:
|
||||
stage: eval
|
||||
extends: .default_nix
|
||||
script:
|
||||
- nix flake show
|
||||
- nix eval .#nixosConfigurations.tower.config.system.build.toplevel.outPath
|
||||
- nix eval .#nixosConfigurations.electra.config.system.build.toplevel.outPath
|
||||
Loading…
Add table
Add a link
Reference in a new issue