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.

This commit is contained in:
Danilo Reyes
2025-11-01 23:24:04 -06:00
parent 56b5f8c67c
commit da4892cc30

View File

@@ -31,7 +31,7 @@ jobs:
- name: Run NixOS VM test - name: Run NixOS VM test
run: | run: |
echo "Running ${{ matrix.test }} test..." 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 - name: Push to Attic cache
if: success() if: success()
@@ -69,7 +69,7 @@ jobs:
run: nix develop --command bash -c "cd frontend && npm run check" run: nix develop --command bash -c "cd frontend && npm run check"
- name: Nix - Flake check - name: Nix - Flake check
run: nix flake check --accept-flake-config run: nix flake check --quiet --accept-flake-config
# Unit tests # Unit tests
unit-tests: unit-tests:
@@ -115,7 +115,7 @@ jobs:
- name: Build backend package - name: Build backend package
run: | run: |
echo "Building backend package..." echo "Building backend package..."
nix build .#backend -L --accept-flake-config nix build .#backend --quiet --accept-flake-config
- name: Push backend to Attic - name: Push backend to Attic
if: success() if: success()
@@ -124,7 +124,7 @@ jobs:
- name: Build frontend package - name: Build frontend package
run: | run: |
echo "Building frontend package..." echo "Building frontend package..."
nix build .#frontend -L --accept-flake-config nix build .#frontend --quiet --accept-flake-config
- name: Push frontend to Attic - name: Push frontend to Attic
if: success() if: success()