From 8d52cfbec70f13edd69019f1edc463e5c32c5e31 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 1 Oct 2021 18:45:09 +1000 Subject: [PATCH] Make cache to be per target Otherwise the armv7 build uses the x64 cache which is no good. --- .github/workflows/build-release-binary.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-release-binary.yml b/.github/workflows/build-release-binary.yml index 48cd160..35bde87 100644 --- a/.github/workflows/build-release-binary.yml +++ b/.github/workflows/build-release-binary.yml @@ -54,6 +54,8 @@ jobs: run: rustup show - uses: Swatinem/rust-cache@v1.3.0 + with: + key: ${{ matrix.target }} - name: Install compiler for armhf arch if: matrix.target == 'armv7-unknown-linux-gnueabihf'