diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-05-30 22:13:47 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-06-03 10:23:14 +0200 |
| commit | 8f22a507c1e7fd7313c1421db25d80057f07bac3 (patch) | |
| tree | 5258518c04aead78bf0a09721de0d373a6f7f314 | |
| parent | 033ea63639e11e3af2bd33092129465e4b9d8113 (diff) | |
| download | rust-8f22a507c1e7fd7313c1421db25d80057f07bac3.tar.gz rust-8f22a507c1e7fd7313c1421db25d80057f07bac3.zip | |
Use 4-core large disk runner for the alt job
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index 56863b839df..8d5f4647301 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -10,6 +10,10 @@ runners: free_disk: true <<: *base-job + - &job-linux-4c-largedisk + os: ubuntu-24.04-4core-16gb + <<: *base-job + - &job-linux-8c os: ubuntu-24.04-8core-32gb <<: *base-job @@ -107,6 +111,15 @@ envs: pr: PR_CI_JOB: 1 +jobs: + dist-x86_64-linux: &job-dist-x86_64-linux + name: dist-x86_64-linux + env: + CODEGEN_BACKENDS: llvm,cranelift + DOCKER_SCRIPT: dist.sh + <<: *job-linux-36c-codebuild + + # Jobs that run on each push to a pull request (PR) # These jobs automatically inherit envs.pr, to avoid repeating # it in each job definition. @@ -138,11 +151,7 @@ pr: # These jobs automatically inherit envs.try, to avoid repeating # it in each job definition. try: - - name: dist-x86_64-linux - env: - CODEGEN_BACKENDS: llvm,cranelift - DOCKER_SCRIPT: dist.sh - <<: *job-linux-36c-codebuild + - <<: *job-dist-x86_64-linux # Main CI jobs that have to be green to merge a commit into master # These jobs automatically inherit envs.auto, to avoid repeating @@ -235,18 +244,14 @@ auto: - name: dist-x86_64-illumos <<: *job-linux-4c - - name: dist-x86_64-linux - env: - CODEGEN_BACKENDS: llvm,cranelift - DOCKER_SCRIPT: dist.sh - <<: *job-linux-36c-codebuild + - <<: *job-dist-x86_64-linux - name: dist-x86_64-linux-alt env: IMAGE: dist-x86_64-linux CODEGEN_BACKENDS: llvm,cranelift DOCKER_SCRIPT: dist-alt.sh - <<: *job-linux-16c + <<: *job-linux-4c-largedisk - name: dist-x86_64-musl env: |
