diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-11-30 12:57:34 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-30 12:57:34 +0800 |
| commit | 34256fe524136fba3fc6ce7e0a3510750a9ffa63 (patch) | |
| tree | 54a123827aa0fd4565e8fab9357ea12349a1754d /src/bootstrap | |
| parent | 9eeae42de250ab0d6e880e0b04d6b348b803b41e (diff) | |
| parent | 5b9a77a09dffec853d37fe7f722166b3996823d6 (diff) | |
| download | rust-34256fe524136fba3fc6ce7e0a3510750a9ffa63.tar.gz rust-34256fe524136fba3fc6ce7e0a3510750a9ffa63.zip | |
Rollup merge of #132721 - MarcoIeni:mingw-split, r=Kobzol
CI: split x86_64-mingw job try-job: x86_64-mingw-1 try-job: x86_64-mingw-2
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 |
