diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-01-19 01:18:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-19 01:18:53 +0100 |
| commit | 8825073dcc622aae7f50ab7e2d41369c6286b73a (patch) | |
| tree | 55b6bd618fbeb30f98efdba96243c7e048064c26 /src/ci/github-actions | |
| parent | 1d55f7270dc6fda5c19da3f563e91165d07463c4 (diff) | |
| parent | de89ffc34181ea5cc49fe7d2328c6ad85df002af (diff) | |
| download | rust-8825073dcc622aae7f50ab7e2d41369c6286b73a.tar.gz rust-8825073dcc622aae7f50ab7e2d41369c6286b73a.zip | |
Rollup merge of #135616 - marcoieni:split-i686-msvc-job, r=Kobzol
CI: split i686-msvc job to two free runners try-job: i686-msvc-1 try-job: i686-msvc-2
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index 1ab70e4e0aa..799ea3e9ad2 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -448,11 +448,18 @@ auto: SCRIPT: make ci-msvc <<: *job-windows-8c - - name: i686-msvc + # i686-msvc is split into two jobs to run tests in parallel. + - name: i686-msvc-1 env: RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc - SCRIPT: make ci-msvc - <<: *job-windows-8c + SCRIPT: make ci-msvc-py-set1 + <<: *job-windows + + - name: i686-msvc-2 + env: + RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc + SCRIPT: make ci-msvc-ps1-set2 + <<: *job-windows # x86_64-msvc-ext is split into multiple jobs to run tests in parallel. - name: x86_64-msvc-ext1 |
