20 lines
291 B
YAML
20 lines
291 B
YAML
stages:
|
|
- build
|
|
|
|
cache: &global_cache
|
|
key:
|
|
files:
|
|
- flake.lock
|
|
- flake.nix
|
|
paths:
|
|
- /nix/store
|
|
policy: pull-push
|
|
|
|
build:
|
|
image: nixos/nix
|
|
stage: build
|
|
cache:
|
|
<<: *global_cache
|
|
script:
|
|
- nix --experimental-features 'nix-command flakes' flake check
|