Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: use free runners for 4-core Linux jobs #131362

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ jobs:
with:
fetch-depth: 2

# Free up disk space on Linux by removing preinstalled components that
# we do not need. We do this to enable some of the less resource
# intensive jobs to run on free runners, which however also have
# less disk space.
- name: free up disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
if: contains(matrix.os, 'ubuntu')
with:
# Removing packages with APT saves ~5 GiB, but takes several
# minutes (and potentially removes important packages).
large-packages: false

# Rust Log Analyzer can't currently detect the PR number of a GitHub
# Actions build on its own, so a hint in the log message is needed to
# point it in the right direction.
Expand Down Expand Up @@ -194,6 +206,11 @@ jobs:
- name: create github artifacts
run: src/ci/scripts/create-doc-artifacts.sh

- name: print disk usage
run: |
echo "disk usage:"
df -h

- name: upload artifacts to github
uses: actions/upload-artifact@v4
with:
Expand Down
19 changes: 12 additions & 7 deletions src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ runners:
env: { }

- &job-linux-4c
os: ubuntu-20.04
<<: *base-job

# Large runner used mainly for its bigger disk capacity
- &job-linux-4c-largedisk
os: ubuntu-20.04-4core-16gb
<<: *base-job

Expand Down Expand Up @@ -127,7 +132,7 @@ auto:
- image: dist-aarch64-linux
env:
CODEGEN_BACKENDS: llvm,cranelift
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-android
<<: *job-linux-4c
Expand All @@ -148,28 +153,28 @@ auto:
<<: *job-linux-4c

- image: dist-loongarch64-linux
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-loongarch64-musl
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-ohos
<<: *job-linux-4c

- image: dist-powerpc-linux
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-powerpc64-linux
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-powerpc64le-linux
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-riscv64-linux
<<: *job-linux-4c

- image: dist-s390x-linux
<<: *job-linux-4c
<<: *job-linux-4c-largedisk

- image: dist-various-1
<<: *job-linux-4c
Expand Down
Loading