From fed3d5af342ecf1f1f7bd777937c9236d39b1ec8 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Thu, 4 Apr 2024 17:02:43 +0200 Subject: [PATCH] Skip downloading caches (#419) At these stages, it is sufficient to just check if a cache entry exists without downloading the cache. --- .github/workflows/build-and-test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 1b9c245f..88e6bcb9 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -39,6 +39,7 @@ jobs: with: path: ${{ env.LLVM }} key: ${{ runner.os }}-llvm-22.04-install-${{ env.llvm_hash }} + lookup-only: 'true' - name: Checkout LLVM if: steps.cache-llvm.outputs.cache-hit != 'true' @@ -85,6 +86,7 @@ jobs: with: path: ${{ env.E2E }} key: ${{ runner.os }}-e2e-${{ hashFiles('emitc/scripts/*.py', 'emitc/scripts/requirements.txt', 'emitc/scripts/e2e*.sh') }}-${{ env.E2E_VERSION }} + lookup-only: 'true' - name: Install TensorFlow if: steps.cache-e2e.outputs.cache-hit != 'true'