From e5c62d24515b312ab5ecdb9c4fd021163750fa33 Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Fri, 12 Jan 2024 18:06:23 +0100 Subject: [PATCH] Don't cache embedded binaries twice Don't cache the concatenated embedded bins files, which would actually double the cache size. This means that make will compress and catenate them again for each build, but that's not taking too long, and will reduce cache sizes and hopefully reduce cache eviction. Signed-off-by: Tom Wieczorek --- .github/workflows/go.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dbd603b0f93b..9d9991b6fffe 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -364,10 +364,8 @@ jobs: key: ${{ runner.os }}-embedded-bins-${{ matrix.arch }}-${{ hashFiles('**/embedded-bins/**/*') }} path: | .bins.linux.stamp - bindata_linux embedded-bins/staging/linux/bin/ embedded-bins/Makefile.variables - pkg/assets/zz_generated_offsets_linux.go - name: Cache GOCACHE uses: actions/cache@v3