Browse Source

ci: full nix3 command output in logs

In #1146, I was made aware that we don't run the nix3 related CI command
with full logs displayed.

This adds the `-L` flag to those command invocations to address that.

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 1 year ago
parent
commit
7849b15e6a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/flake.yml

+ 2 - 2
.github/workflows/flake.yml

@@ -44,7 +44,7 @@ jobs:
       - name: Setup Nix cache
       - name: Setup Nix cache
         uses: DeterminateSystems/magic-nix-cache-action@main
         uses: DeterminateSystems/magic-nix-cache-action@main
       - name: Nix Flake Check
       - name: Nix Flake Check
-        run: nix flake check --all-systems
+        run: nix flake check --all-systems -L
 
 
   build:
   build:
     name: Build Nix package
     name: Build Nix package
@@ -61,4 +61,4 @@ jobs:
       - name: Setup Nix cache
       - name: Setup Nix cache
         uses: DeterminateSystems/magic-nix-cache-action@main
         uses: DeterminateSystems/magic-nix-cache-action@main
       - name: Nix Build
       - name: Nix Build
-        run: nix build .#packages.${{ matrix.target }}.default
+        run: nix build .#packages.${{ matrix.target }}.default -L