From 992d9485ff13ca3b951c5c1460c7d25e315929d3 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Tue, 20 Sep 2022 07:17:28 -0500 Subject: [PATCH] [wip] disable cache (prep for experiments with docker image cache in GHA) --- .github/workflows/testground.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testground.yml b/.github/workflows/testground.yml index 042430e5..2174a2ce 100644 --- a/.github/workflows/testground.yml +++ b/.github/workflows/testground.yml @@ -62,12 +62,12 @@ jobs: run: echo "::set-output name=hash::$(git rev-parse $(git branch --show-current))" working-directory: testground - - name: Restore Testground executable from cache - id: testground-exe-cache - uses: actions/cache@v3 - with: - path: ~/go/bin/testground - key: ${{ matrix.target.os }}-${{ matrix.target.cpu }}-nim-${{ matrix.nim_branch }}-testground_commit-${{ steps.calc-testground-hash.outputs.hash }}-cache_nonce:${{ matrix.cache_nonce }} + # - name: Restore Testground executable from cache + # id: testground-exe-cache + # uses: actions/cache@v3 + # with: + # path: ~/go/bin/testground + # key: ${{ matrix.target.os }}-${{ matrix.target.cpu }}-nim-${{ matrix.nim_branch }}-testground_commit-${{ steps.calc-testground-hash.outputs.hash }}-cache_nonce:${{ matrix.cache_nonce }} - name: Build Testground executable if: steps.testground-exe-cache.outputs.cache-hit != 'true'