windows: Use a clippy script instead of xtask (#25807)

Closes #ISSUE

Match the behaviour of our macOS and Linux tests

Release Notes:

- N/A *or* Added/Fixed/Improved ...
This commit is contained in:
张小白 2025-02-28 22:01:10 +08:00 committed by GitHub
parent 5740fec9d5
commit c9aba6c10a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 2 deletions

View File

@ -273,8 +273,7 @@ jobs:
- name: cargo clippy
working-directory: ${{ env.ZED_WORKSPACE }}
# Windows can't run shell scripts, so we need to use `cargo xtask`.
run: cargo xtask clippy
run: ./script/clippy.ps1
- name: Run tests
uses: ./.github/actions/run_tests_windows

21
script/clippy.ps1 Normal file
View File

@ -0,0 +1,21 @@
$ErrorActionPreference = "Stop"
$needAddWorkspace = $false
if ($args -notcontains "-p" -and $args -notcontains "--package") {
$needAddWorkspace = $true
}
# https://stackoverflow.com/questions/41324882/how-to-run-a-powershell-script-with-verbose-output/70020655#70020655
Set-PSDebug -Trace 2
$Cargo = $env:CARGO
if (-not $Cargo) {
$Cargo = "cargo"
}
if ($needAddWorkspace) {
& $Cargo clippy @args --workspace --release --all-targets --all-features -- --deny warnings
}
else {
& $Cargo clippy @args --release --all-targets --all-features -- --deny warnings
}