[ci] Allow up to 20G of buildkit cache

This commit is contained in:
Laura Hausmann 2024-07-02 05:03:28 +02:00
parent e4089d3e82
commit a88bdbce2a
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
2 changed files with 2 additions and 2 deletions

View file

@ -36,4 +36,4 @@ jobs:
shell: bash shell: bash
run: docker buildx build --target image-jit -t iceshrimp.dev/${GITHUB_REPOSITORY@L}:$GITHUB_REF_NAME --provenance=false --platform=linux/amd64,linux/arm64 --push /iceshrimp run: docker buildx build --target image-jit -t iceshrimp.dev/${GITHUB_REPOSITORY@L}:$GITHUB_REF_NAME --provenance=false --platform=linux/amd64,linux/arm64 --push /iceshrimp
- name: Purge cache - name: Purge cache
run: docker buildx prune --keep-storage 10G run: docker buildx prune --keep-storage 20G

View file

@ -65,4 +65,4 @@ jobs:
cp /src/.forgejo/ci-release/Dockerfile /out cp /src/.forgejo/ci-release/Dockerfile /out
docker buildx build ${{ env.TAGS }} --provenance=false --platform=linux/amd64,linux/arm64 --push /out docker buildx build ${{ env.TAGS }} --provenance=false --platform=linux/amd64,linux/arm64 --push /out
- name: Purge cache - name: Purge cache
run: docker buildx prune --keep-storage 10G run: docker buildx prune --keep-storage 20G