Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1812e31

Browse files
committed
free more space and try 8 core again
1 parent ddf43cf commit 1812e31

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,22 @@ jobs:
112112
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
113113
if: matrix.free_disk
114114

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+
115131
# Rust Log Analyzer can't currently detect the PR number of a GitHub
116132
# Actions build on its own, so a hint in the log message is needed to
117133
# point it in the right direction.

src/ci/github-actions/jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ auto:
266266
# nightly features to compile, and this job would fail if
267267
# executed on beta and stable.
268268
only_on_channel: nightly
269-
<<: *job-linux-36c-codebuild
269+
<<: *job-linux-8c-codebuild
270270

271271
# Tests integration with Rust for Linux.
272272
# Builds stage 1 compiler and tries to compile a few RfL examples with it.

0 commit comments

Comments
 (0)