17 lines
360 B
YAML
17 lines
360 B
YAML
pipeline:
|
|
restore-cache:
|
|
image: drillster/drone-volume-cache
|
|
settings:
|
|
restore: true
|
|
mount:
|
|
- /nix/store
|
|
volumes:
|
|
- /var/lib/woodpecker/cache/nixstore:/cache
|
|
|
|
check:
|
|
image: nixpkgs/nix-flakes:latest
|
|
pull: true
|
|
commands:
|
|
- nix --no-sandbox flake info
|
|
- nix --no-sandbox develop -c statix check
|
|
|