Skip to content

Commit d851376

Browse files
committed
Auto merge of #132409 - MarcoIeni:ci-remove-linux-4c-large, r=<try>
CI: remove linux 4 core large runner try-job: dist-aarch64-linux try-job: dist-loongarch64-linux try-job: dist-loongarch64-musl try-job: dist-powerpc-linux try-job: dist-powerpc64-linux try-job: dist-powerpc64le-linux try-job: dist-s390x-linux try-job: x86_64-gnu-debug try-job: arm-android try-job: armhf-gnu try-job: dist-android try-job: dist-armhf-linux try-job: dist-armv7-linux try-job: dist-i586-gnu-i586-i686-musl try-job: dist-i686-linux try-job: dist-ohos try-job: dist-riscv64-linux try-job: dist-various-1 try-job: dist-various-2 try-job: dist-x86_64-freebsd try-job: dist-x86_64-illumos try-job: dist-x86_64-netbsd try-job: mingw-check try-job: test-various try-job: x86_64-rust-for-linux try-job: x86_64-gnu try-job: x86_64-gnu-stable try-job: x86_64-gnu-aux try-job: x86_64-gnu-nopt try-job: x86_64-gnu-tools
2 parents ca87b53 + 69c4c84 commit d851376

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.github/workflows/ci.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,7 @@ jobs:
110110
# less disk space.
111111
- name: free up disk space
112112
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
113-
if: contains(matrix.os, 'ubuntu')
114-
with:
115-
# Removing packages with APT saves ~5 GiB, but takes several
116-
# minutes (and potentially removes important packages).
117-
large-packages: false
113+
if: matrix.free_disk
118114

119115
# Rust Log Analyzer can't currently detect the PR number of a GitHub
120116
# Actions build on its own, so a hint in the log message is needed to

src/ci/github-actions/jobs.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ runners:
66

77
- &job-linux-4c
88
os: ubuntu-20.04
9+
# Free some disk space to avoid running out of space during the build.
10+
free_disk: true
911
<<: *base-job
1012

1113
# Large runner used mainly for its bigger disk capacity
@@ -135,7 +137,7 @@ auto:
135137
- image: dist-aarch64-linux
136138
env:
137139
CODEGEN_BACKENDS: llvm,cranelift
138-
<<: *job-linux-4c-largedisk
140+
<<: *job-linux-4c
139141

140142
- image: dist-android
141143
<<: *job-linux-4c
@@ -156,28 +158,28 @@ auto:
156158
<<: *job-linux-4c
157159

158160
- image: dist-loongarch64-linux
159-
<<: *job-linux-4c-largedisk
161+
<<: *job-linux-4c
160162

161163
- image: dist-loongarch64-musl
162-
<<: *job-linux-4c-largedisk
164+
<<: *job-linux-4c
163165

164166
- image: dist-ohos
165167
<<: *job-linux-4c
166168

167169
- image: dist-powerpc-linux
168-
<<: *job-linux-4c-largedisk
170+
<<: *job-linux-4c
169171

170172
- image: dist-powerpc64-linux
171-
<<: *job-linux-4c-largedisk
173+
<<: *job-linux-4c
172174

173175
- image: dist-powerpc64le-linux
174-
<<: *job-linux-4c-largedisk
176+
<<: *job-linux-4c
175177

176178
- image: dist-riscv64-linux
177179
<<: *job-linux-4c
178180

179181
- image: dist-s390x-linux
180-
<<: *job-linux-4c-largedisk
182+
<<: *job-linux-4c
181183

182184
- image: dist-various-1
183185
<<: *job-linux-4c
@@ -256,9 +258,7 @@ auto:
256258
<<: *job-linux-4c
257259

258260
- image: x86_64-gnu-debug
259-
# This seems to be needed because a full stage 2 build + run-make tests
260-
# overwhelms the storage capacity of the standard 4c runner.
261-
<<: *job-linux-4c-largedisk
261+
<<: *job-linux-4c
262262

263263
- image: x86_64-gnu-distcheck
264264
<<: *job-linux-8c

0 commit comments

Comments
 (0)