This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,22 @@ jobs:
112
112
uses : jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
113
113
if : matrix.free_disk
114
114
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
127
+
128
+ - name : Show installed packages ordered by size
129
+ run : dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -nr
130
+
115
131
# Rust Log Analyzer can't currently detect the PR number of a GitHub
116
132
# Actions build on its own, so a hint in the log message is needed to
117
133
# point it in the right direction.
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ auto:
266
266
# nightly features to compile, and this job would fail if
267
267
# executed on beta and stable.
268
268
only_on_channel : nightly
269
- << : *job-linux-36c -codebuild
269
+ << : *job-linux-8c -codebuild
270
270
271
271
# Tests integration with Rust for Linux.
272
272
# Builds stage 1 compiler and tries to compile a few RfL examples with it.
You can’t perform that action at this time.
0 commit comments