diff options
| author | bors <bors@rust-lang.org> | 2023-05-03 07:06:42 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-03 07:06:42 +0000 |
| commit | 82cd953c7c43e64dae6f705ce2f07b291f0e22e3 (patch) | |
| tree | 0e67bdf20505b436192b96cc75087289397d618f /src/ci/github-actions | |
| parent | cad92b4c979760b088ffd18e6c89801668c944f2 (diff) | |
| parent | 47528c0b144f4c49adf58e34e8d3d47ff8e80c34 (diff) | |
| download | rust-82cd953c7c43e64dae6f705ce2f07b291f0e22e3.tar.gz rust-82cd953c7c43e64dae6f705ce2f07b291f0e22e3.zip | |
Auto merge of #110846 - jdno:reduce-builder-sizes, r=pietroalbini
Optimize builder sizes The infra-team is continuously monitoring the efficiency of the CI system in an effort to improve overall build times and resource usage. Some builders have used much less than their allocated resources, so we are testing smaller builder sizes for them. r? `@pietroalbini`
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/ci.yml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml index 8409b9ca569..5661adf6776 100644 --- a/src/ci/github-actions/ci.yml +++ b/src/ci/github-actions/ci.yml @@ -73,6 +73,10 @@ x--expand-yaml-anchors--remove: - &base-job env: {} + - &job-linux-4c + os: ubuntu-20.04-4core-16gb + <<: *base-job + - &job-linux-8c os: ubuntu-20.04-8core-32gb <<: *base-job @@ -416,13 +420,13 @@ jobs: <<: *job-linux-8c - name: i686-gnu - <<: *job-linux-16c + <<: *job-linux-8c - name: i686-gnu-nopt - <<: *job-linux-16c + <<: *job-linux-8c - name: mingw-check - <<: *job-linux-8c + <<: *job-linux-4c - name: test-various <<: *job-linux-8c @@ -431,7 +435,7 @@ jobs: <<: *job-linux-8c - name: x86_64-gnu - <<: *job-linux-8c + <<: *job-linux-4c # This job ensures commits landing on nightly still pass the full # test suite on the stable channel. There are some UI tests that @@ -446,10 +450,10 @@ jobs: # could cause failures when `dev: 1` in `stage0.txt`, and running # this on stable is useless. CI_ONLY_WHEN_CHANNEL: nightly - <<: *job-linux-8c + <<: *job-linux-4c - name: x86_64-gnu-aux - <<: *job-linux-8c + <<: *job-linux-4c - name: x86_64-gnu-debug <<: *job-linux-8c @@ -478,7 +482,7 @@ jobs: <<: *job-linux-8c - name: x86_64-gnu-nopt - <<: *job-linux-8c + <<: *job-linux-4c - name: x86_64-gnu-tools env: |
