diff options
| author | Michael Goulet <michael@errs.io> | 2023-06-18 13:17:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-18 13:17:06 -0700 |
| commit | b0991731d461f4144fc775c7c39ea7c8e580b686 (patch) | |
| tree | 0e723b58a039d6798373341b528a35aa611e5df6 /src/bootstrap | |
| parent | 2a85e02428c2e136d25463c7b8cffb89da2ebf0a (diff) | |
| parent | d25e8d79a14ebf02df437f0147de592c8ded3ea1 (diff) | |
| download | rust-b0991731d461f4144fc775c7c39ea7c8e580b686.tar.gz rust-b0991731d461f4144fc775c7c39ea7c8e580b686.zip | |
Rollup merge of #112668 - Kobzol:ci-msvc-ps1, r=pietroalbini
Test `x.ps1` in `msvc` CI job Small adjustment to https://github.com/rust-lang/rust/pull/112633, to resolve [this comment](https://github.com/rust-lang/rust/pull/112633#issuecomment-1592973577). r? `@pietroalbini`
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/mk/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index 779db9fffa8..d2969315803 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -60,8 +60,11 @@ prepare: ## MSVC native builders # this intentionally doesn't use `$(BOOTSTRAP)` so we can test the shebang on Windows -ci-msvc: - $(Q)$(CFG_SRC_DIR)/x.py test --stage 2 +ci-msvc-py: + $(Q)$(CFG_SRC_DIR)/x.py test --stage 2 tidy +ci-msvc-ps1: + $(Q)$(CFG_SRC_DIR)/x.ps1 test --stage 2 --exclude tidy +ci-msvc: ci-msvc-py ci-msvc-ps1 ## MingW native builders |
