From cdb5da0abe74d449ab7a1c5df835114f26c6db1d Mon Sep 17 00:00:00 2001 From: admercs Date: Mon, 29 Apr 2024 13:44:20 -0700 Subject: [PATCH] cache gcc builds on linux --- .github/workflows/test_linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index b55c4590..e7cac689 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -44,8 +44,8 @@ jobs: id: cache-gcc uses: actions/cache@v4 with: - path: "gcc-$GCC_VERSION/" - key: ${{ runner.os }}-gcc + path: "gcc-${GCC_VERSION}" + key: gcc - name: "Build GCC from source" if: steps.cache-gcc.outputs.cache-hit != 'true'