ソースを参照

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 年間 前
コミット
7849b15e6a
1 ファイル変更2 行追加2 行削除
  1. 2 2
      .github/workflows/flake.yml

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

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