From d23eac866f860b4ad7cd7e9afcf6af0448c6d4bc Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 20 Jun 2024 11:17:27 -0500 Subject: [PATCH] silence apt-get --- .github/actions/clean-disk/action.yml | 2 +- .github/workflows/build.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/clean-disk/action.yml b/.github/actions/clean-disk/action.yml index 0025d1b..3743b92 100644 --- a/.github/actions/clean-disk/action.yml +++ b/.github/actions/clean-disk/action.yml @@ -41,7 +41,7 @@ runs: sudo apt-get purge \ --allow-remove-essential \ -qq \ - $(non_manifest_packages) & + $(non_manifest_packages) > /dev/null & fi wait diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e33ef36..32923e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,10 +52,10 @@ jobs: - name: Build run: | - for host in ${{ inputs.host }}; do - cachix watch-exec daylin -- \ - oizys build --system-path \ + nix run . \ + -- \ + build --system-path \ --host "$host" \ - --flake . -- \ + --flake . \ + -- \ --print-build-logs - done