From 07779e14b31fea12e5ccb967b7eda95bec44608a Mon Sep 17 00:00:00 2001 From: Moritz 'e1mo' Fromm Date: Wed, 12 Apr 2023 14:18:19 +0200 Subject: [PATCH] Disable cachix (for now) --- .github/workflows/build-systems.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-systems.yaml b/.github/workflows/build-systems.yaml index 8aaffac..f4cb440 100644 --- a/.github/workflows/build-systems.yaml +++ b/.github/workflows/build-systems.yaml @@ -24,10 +24,10 @@ jobs: - uses: cachix/install-nix-action@v20 with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - - uses: cachix/cachix-action@v12 - with: - name: chaos-jetzt-nixfiles - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + #- uses: cachix/cachix-action@v12 + # with: + # name: chaos-jetzt-nixfiles + # authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - name: nix flake check run: | nix flake check --no-build @@ -47,7 +47,8 @@ jobs: echo "::group::Building ${host}" drv=".#nixosConfigurations.$host.config.system.build.toplevel" build_cmd="nix build ${drv}" - cachix watch-exec chaos-jetzt-nixfiles -- $build_cmd + #cachix watch-exec chaos-jetzt-nixfiles -- $build_cmd + $build_cmd echo "::endgroup::" out_path=$($build_cmd --print-out-paths) echo -e "\x1b[32;1mSuccessfully built .#nixosConfigurations.${host}\x1b[0m"