From 0fe3a48a933d4e76f577a5b38854e090febc8b4a Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 25 Feb 2025 15:05:56 +0100 Subject: [PATCH] Disable circuits cache --- .github/workflows/playwright.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bdee99d..39bc381 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -27,16 +27,16 @@ jobs: echo "platform=${RUNNER_OS,,}" >> $GITHUB_ENV echo "architecture=$([[ $RUNNER_ARCH == 'X64' ]] && echo amd64 || echo ${RUNNER_ARCH,,})" >> $GITHUB_ENV - - name: Restore cached circuits - id: circuits-cache-restore - uses: actions/cache/restore@v4 - with: - path: | - datadir/circuits - key: ${{ env.circuit_version }}-circuits + # - name: Restore cached circuits + # id: circuits-cache-restore + # uses: actions/cache/restore@v4 + # with: + # path: | + # datadir/circuits + # key: ${{ env.circuit_version }}-circuits - name: Download circuits - if: steps.circuits-cache-restore.outputs.cache-hit != 'true' + # if: steps.circuits-cache-restore.outputs.cache-hit != 'true' run: | mkdir -p datadir/circuits chmod 700 datadir @@ -46,12 +46,12 @@ jobs: chmod +x cirdl-${circuit_version}-${platform}-${architecture} ./cirdl-${circuit_version}-${platform}-${architecture} ./datadir/circuits ${eth_provider} ${marketplace_address} - - name: Cache circuits - id: circuits-cache - uses: actions/cache/save@v4 - with: - path: datadir/circuits - key: ${{ steps.circuits-cache-restore.outputs.cache-primary-key }} + # - name: Cache circuits + # id: circuits-cache + # uses: actions/cache/save@v4 + # with: + # path: datadir/circuits + # key: ${{ steps.circuits-cache-restore.outputs.cache-primary-key }} - name: Restore cached codex id: codex-cache-restore