We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d94ad commit bc3dd87Copy full SHA for bc3dd87
.github/workflows/ci.yml
@@ -115,15 +115,20 @@ jobs:
115
- name: free up more disk space
116
if: matrix.free_disk
117
run: |
118
- sudo apt purge -y \
119
- '^java-*' \
120
- 'groff' \
121
- 'groff-base' \
122
- '^libllvm.*' \
123
- '^llvm.*' \
124
- 'gcc' \
125
- 'gcc-11' \
126
- && sudo apt autoremove -y
+ sudo apt purge -y --autoremove \
+ '^java-*' \
+ 'groff' \
+ 'groff-base' \
+ '^libllvm.*' \
+ '^llvm.*' \
+ 'gcc' \
+ 'gcc-11' \
+ 'libicu-dev' \
127
+ '^vim.*' \
128
+ 'perl' \
129
+ 'perl-base' \
130
+ 'python3-breezy' \
131
+ && rm -rf /var/lib/apt/lists/*
132
133
- name: Show installed packages ordered by size
134
run: dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -nr
0 commit comments