diff options
author | Brian Behlendorf <[email protected]> | 2023-01-11 15:18:51 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-11 15:18:51 -0800 |
commit | 6320b9e68e03cdf390b444693e06aaa51a49f0ca (patch) | |
tree | 7908539d72828aad58297146d8bcffa6a94d9339 /.github | |
parent | 6f2ffd272cfd4487816174bf37c30b56a6443705 (diff) |
CI: remove unused packages/snaps
Removing portions of packages/snaps directly with rm can result in
unexpected errors when running `apt update`. Free up the additional
space by removing (some) packages with the proper tools.
This change frees up slightly less space than before, but it is
expected to still be sufficient.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #14374
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/scripts/reclaim_disk_space.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/scripts/reclaim_disk_space.sh b/.github/workflows/scripts/reclaim_disk_space.sh index cc16a9079..a0d1e9c8f 100755 --- a/.github/workflows/scripts/reclaim_disk_space.sh +++ b/.github/workflows/scripts/reclaim_disk_space.sh @@ -1,20 +1,19 @@ -#!/bin/sh +#!/bin/sh -x set -eu # remove 4GiB of images sudo systemd-run docker system prune --force --all --volumes +# remove unused packages +sudo apt remove -q --purge firefox + # remove unused software sudo systemd-run rm -rf \ "$AGENT_TOOLSDIRECTORY" \ /opt/* \ /usr/local/* \ /usr/share/az* \ - /usr/share/dotnet \ /usr/share/gradle* \ /usr/share/miniconda \ - /usr/share/swift \ - /var/lib/gems \ - /var/lib/mysql \ - /var/lib/snapd + /usr/share/swift |