diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-10-22 19:44:30 +0800 |
|---|---|---|
| committer | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-10-22 19:44:30 +0800 |
| commit | 03c7f992cd3b955bde2cdffc30ed44bcdb4f972f (patch) | |
| tree | 406e0b549d88e9ca24f88312f5e114e2ee615724 /src/ci/github-actions | |
| parent | 0ccc62a5dcbc38546791aed591fcc9314712574b (diff) | |
| download | rust-03c7f992cd3b955bde2cdffc30ed44bcdb4f972f.tar.gz rust-03c7f992cd3b955bde2cdffc30ed44bcdb4f972f.zip | |
ci: switch `x86_64-gnu-debug` to use a large disk runner
Full stage 2 build + run-make with full debug info seems to overwhelm the standard 4c runner's storage capacity.
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index 2b636604049..52c97907b6a 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -253,7 +253,9 @@ auto: <<: *job-linux-4c - image: x86_64-gnu-debug - <<: *job-linux-4c + # This seems to be needed because a full stage 2 build + run-make tests + # overwhelms the storage capacity of the standard 4c runner. + <<: *job-linux-4c-largedisk - image: x86_64-gnu-distcheck <<: *job-linux-8c |
