diff options
| author | bors <bors@rust-lang.org> | 2024-11-30 17:18:00 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-30 17:18:00 +0000 |
| commit | f981b2e27a7505468fac637ee67faef81b57fec0 (patch) | |
| tree | 19af69e42c3785dc8cf51bc4634c7afcbcd65016 /src/bootstrap | |
| parent | e93e096cc88728337fb41ff74431ebe71a1b4663 (diff) | |
| parent | 132fcd89b30a6e7d7e4bcf68070657ea1e76edbb (diff) | |
| download | rust-f981b2e27a7505468fac637ee67faef81b57fec0.tar.gz rust-f981b2e27a7505468fac637ee67faef81b57fec0.zip | |
Auto merge of #133659 - jieyouxu:rollup-576gh4p, r=jieyouxu
Rollup of 6 pull requests Successful merges: - #131551 (Support input/output in vector registers of PowerPC inline assembly) - #132515 (Fix and undeprecate home_dir()) - #132721 (CI: split x86_64-mingw job) - #133106 (changes old intrinsic declaration to new declaration) - #133496 (thread::available_parallelism for wasm32-wasip1-threads) - #133548 (Add `BTreeSet` entry APIs to match `HashSet`) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/mk/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index 92c8f5dc452..a1f38b9ac14 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -108,11 +108,13 @@ ci-msvc: ci-msvc-py ci-msvc-ps1 ## MingW native builders -# test both x and bootstrap entrypoints +# Set of tests that should represent half of the time of the test suite. +# Used to split tests across multiple CI runners. +# Test both x and bootstrap entrypoints. ci-mingw-x: - $(Q)$(CFG_SRC_DIR)/x test --stage 2 tidy + $(Q)$(CFG_SRC_DIR)/x test --stage 2 --skip=compiler --skip=src ci-mingw-bootstrap: - $(Q)$(BOOTSTRAP) test --stage 2 --skip tidy + $(Q)$(BOOTSTRAP) test --stage 2 --skip=tests --skip=coverage-map --skip=coverage-run --skip=library --skip=tidyselftest ci-mingw: ci-mingw-x ci-mingw-bootstrap .PHONY: dist |
