16 lines
235 B
YAML
16 lines
235 B
YAML
image: nixos/nix
|
|
|
|
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- nix build --experimental-features 'nix-command flakes'
|
|
- rm -r result
|
|
cache:
|
|
paths:
|
|
- /nix/store
|
|
- ~/.cache
|
|
artifacts:
|
|
untracked: true
|