Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,14 @@ jobs:
with:
persist-credentials: false

- name: Reclaim runner disk for the agent image
if: matrix.service == 'agent' && matrix.platform == 'linux/amd64'
run: |
set -euo pipefail
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
docker system prune --all --force || true
df -h /

- name: Derive platform slug
run: |
set -euo pipefail
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/validate-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ jobs:
with:
persist-credentials: false

- name: Reclaim runner disk for the agent image
if: matrix.service == 'agent' && matrix.platform == 'linux/amd64'
run: |
set -euo pipefail
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
docker system prune --all --force || true
df -h /

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3

Expand Down
Loading