From 0218cfe873fdf98e2022ea39663e697e6d267457 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Thu, 4 Apr 2024 12:30:45 +0000 Subject: [PATCH] Skip downloading caches 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'