From cb8796bfc7e2b8741729606441d2614025b059a7 Mon Sep 17 00:00:00 2001 From: Tom Bereknyei Date: Tue, 5 Dec 2023 14:01:47 -0500 Subject: [PATCH] ci: try both flox and nix due to incomplete nix installed via flox --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10a4c6b..3ce53d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,8 @@ jobs: run: | cd example export NIX_CONFIG="experimental-features = nix-command flakes" - nix build --no-write-lock-file + # when installed with flox, nix can't see cacert + flox build .#default --no-write-lock-file || nix build --no-write-lock-file test-all-action: name: "All - Github Action Test"