Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kouzhudong committed Jan 17, 2024
1 parent 67a8498 commit 373b4dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Install-WDK.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ $argumentList = ("/features", "+", "/quiet")

if (Test-IsWin19) {
# `winsdksetup.exe /features + /quiet` installs all features without showing the GUI
Install-Binary -Url $winSdkUrl -Name "winsdksetup.exe" -ArgumentList $argumentList
Install-Binary -Url $winSdkUrl "winsdksetup.exe" -ArgumentList $argumentList
}

# `wdksetup.exe /features + /quiet` installs all features without showing the GUI
Install-Binary -Url $wdkUrl -Name "wdksetup.exe" -ArgumentList $argumentList
Install-Binary -Url $wdkUrl "wdksetup.exe" -ArgumentList $argumentList

# Need to install the VSIX to get the build targets when running VSBuild
$FilePath = Resolve-Path -Path $FilePath
Install-VsixExtension -FilePath $FilePath -Name "WDK.vsix" -VSversion $VSver -InstallOnly
Install-VsixExtension -FilePath $FilePath "WDK.vsix" -VSversion $VSver -InstallOnly

Invoke-PesterTests -TestFile "WDK"

0 comments on commit 373b4dd

Please sign in to comment.