From cdebb73c543104efe9d43ce0fbd7c51de5d433aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Tue, 8 Nov 2022 16:36:28 +0000 Subject: [PATCH] use native flakes on CI --- .woodpecker.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index ce52f481..8fd9d44a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,7 @@ pipeline: check: - image: nixos/nix:latest + image: nixpkgs/nix-flakes:latest + pull: true commands: - - nix-shell --pure --run 'nix --extra-experimental-features "flakes nix-command" flake info' - - nix-shell --pure --run 'statix check' + - nix --no-sandbox flake info + - nix --no-sandbox develop -c statix check