From 9d7fae47ca05d2a2d1918dff69b9f930fa228f16 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 29 Jul 2024 09:08:01 -0700 Subject: [PATCH] Disable docker cache with github actions The container in this repository does not take long to build and the caches look like they're take a nontrivial amount of space in CI. Try to free up more room for LLVM caches which are the main reason to use caching in this repository. --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ead42c9..828c1d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -242,8 +242,6 @@ jobs: platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max - name: Publish a draft release if: startsWith(github.ref, 'refs/tags')