From 19b70e705780532113d8008ec8a352626c644d9c Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:23:21 +0100 Subject: [PATCH] try fixing test split --- src/bootstrap/mk/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index 74b037aa3aa4a..5f40df696553c 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -112,14 +112,14 @@ ci-msvc: ci-msvc-py ci-msvc-ps1 # Used to split tests across multiple CI runners. TESTS_IN_MINGW_2 := \ tests/ui \ - src/tools/rust-analyzer \ - src/tools/cargo + rust-analyzer \ + cargo # test both x and bootstrap entrypoints ci-mingw-x: - $(Q)$(CFG_SRC_DIR)/x test --stage 2 $(TESTS_IN_MINGW_2:%=--exclude %) + $(Q)$(CFG_SRC_DIR)/x test --stage 2 $(TESTS_IN_MINGW_2) ci-mingw-bootstrap: - $(Q)$(BOOTSTRAP) test --stage 2 $(TESTS_IN_MINGW_2) + $(Q)$(BOOTSTRAP) test --stage 2 $(TESTS_IN_MINGW_2:%=--skip %) ci-mingw: ci-mingw-x ci-mingw-bootstrap .PHONY: dist