From da4892cc30e96844fac9d15811dbdd7cf959eb27 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 1 Nov 2025 23:24:04 -0600 Subject: [PATCH] Update CI configuration to suppress verbose output during Nix builds and checks. Replace `-L` flag with `--quiet` for improved log readability in backend and frontend package builds, as well as NixOS VM tests. --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 47290cb..e9326b6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Run NixOS VM test run: | echo "Running ${{ matrix.test }} test..." - nix build .#checks.x86_64-linux.${{ matrix.test }} -L --accept-flake-config + nix build .#checks.x86_64-linux.${{ matrix.test }} --quiet --accept-flake-config - name: Push to Attic cache if: success() @@ -69,7 +69,7 @@ jobs: run: nix develop --command bash -c "cd frontend && npm run check" - name: Nix - Flake check - run: nix flake check --accept-flake-config + run: nix flake check --quiet --accept-flake-config # Unit tests unit-tests: @@ -115,7 +115,7 @@ jobs: - name: Build backend package run: | echo "Building backend package..." - nix build .#backend -L --accept-flake-config + nix build .#backend --quiet --accept-flake-config - name: Push backend to Attic if: success() @@ -124,7 +124,7 @@ jobs: - name: Build frontend package run: | echo "Building frontend package..." - nix build .#frontend -L --accept-flake-config + nix build .#frontend --quiet --accept-flake-config - name: Push frontend to Attic if: success()