From 05860f0b22680aa88740e7f8b1322d02b0018359 Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Mon, 25 Nov 2024 15:14:07 +0100 Subject: [PATCH] ci: start nix-shell once before the build The idea is to run nix-shell beforehand so that the call for the actual build produces less/no output --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5ea3882..c4282d7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,5 +19,7 @@ jobs: with: nix_path: nixpkgs=channel:nixos-24.05 - uses: DeterminateSystems/magic-nix-cache-action@v7 + - name: start nix-shell once + run: nix-shell --run "echo \"success\"" - name: colmena build run: nix-shell --run "colmena build -v"