From 0f7732cb66da300279782217e99653071e52a56e Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Tue, 11 Jul 2023 17:58:06 -0700 Subject: [PATCH] try cache again --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3786a2f..54f584c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,14 +140,14 @@ jobs: echo "ncpu=$ncpu" >> $GITHUB_ENV echo "MAKE_CMD=${MAKE_CMD}" >> $GITHUB_ENV - # - name: Restore nimble dependencies from cache - # id: nimble_deps - # uses: actions/cache@v3 - # with: - # path: | - # ~/.nimble/pkgs2 - # ~/.nimble/packages_official.json - # key: ${{ inputs.os }}-${{ inputs.cpu }}-${{ env.cache_nonce }} + - name: Restore nimble dependencies from cache + id: nimble_deps + uses: actions/cache@v3 + with: + path: | + ~/.nimble/pkgs2 + ~/.nimble/packages_official.json + key: ${{ matrix.target.os }}-${{ matrix.target.cpu }}-nimble-${{ hashFiles('nimble.lock') }} - name: Setup Nimble uses: "./.github/actions/install_nimble"