Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Add --quiet to CI commands

+5 -5
+2 -2
.github/workflows/build.yml
··· 51 51 cachixAuthToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 52 52 makeSpace: ${{ matrix.output == 'nixosConfigurations' }} 53 53 - run: | 54 - nix build ${{ matrix.derivation }} 54 + nix build --quiet ${{ matrix.derivation }} 55 55 56 56 build-aarch64-linux: 57 57 name: Build ${{ matrix.output }}.${{ matrix.name }} ··· 70 70 cachixAuthToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 71 71 makeSpace: ${{ matrix.output == 'nixosConfigurations' }} 72 72 - run: | 73 - nix build ${{ matrix.derivation }} 73 + nix build --quiet ${{ matrix.derivation }}
+1 -1
.github/workflows/check.yml
··· 25 25 with: 26 26 cachixAuthToken: ${{ secrets.CACHIX_AUTH_TOKEN }} 27 27 - run: | 28 - nix flake check --all-systems --keep-going . 28 + nix flake check --quiet --all-systems --keep-going .
+2 -2
.github/workflows/update-flake.yml
··· 29 29 id: update 30 30 run: | 31 31 set -o pipefail 32 - nix flake update 2>&1 \ 32 + nix flake update --quiet 2>&1 \ 33 33 | tee -a "$GITHUB_STEP_SUMMARY" ./update.out 34 34 - name: Run flake checks 35 35 id: check 36 36 run: | 37 37 set -o pipefail 38 - nix flake check --all-systems --keep-going 2>&1 \ 38 + nix flake check --quiet --all-systems --keep-going 2>&1 \ 39 39 | tee -a "$GITHUB_STEP_SUMMARY" ./check.out 40 40 - name: Build PR body 41 41 id: vars