From c75859eb756591526fa8a3026a3143fc1f35e560 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 21 May 2023 20:12:55 -0400 Subject: [PATCH] Checks: don't do a slow, expensive, ineffective check of the binaries --- .github/workflows/build.yaml | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 064dc37..73a2230 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,24 +24,6 @@ jobs: path: result/bin/nix-actions-cache retention-days: 1 - check-artifacts-macOS: - runs-on: macos-12 - needs: build-artifacts-macOS - steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 - with: - name: nix-actions-cache-macOS - path: cache-binary - - name: Make the binary executable - run: chmod +x ./cache-binary/nix-actions-cache - - uses: DeterminateSystems/nix-installer-action-cache@main - with: - cache-binary: ./cache-binary/nix-actions-cache - - - name: "Build something" - run: "nix build .# -L" - build-artifacts-Linux: runs-on: ubuntu-22.04 steps: @@ -59,21 +41,3 @@ jobs: name: nix-actions-cache-Linux path: result/bin/nix-actions-cache retention-days: 1 - - check-artifacts-Linux: - runs-on: ubuntu-22.04 - needs: build-artifacts-Linux - steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 - with: - name: nix-actions-cache-Linux - path: cache-binary - - name: Make the binary executable - run: chmod +x ./cache-binary/nix-actions-cache - - uses: DeterminateSystems/nix-installer-action-cache@main - with: - cache-binary: ./cache-binary/nix-actions-cache - - - name: "Build something" - run: "nix build .# -L"