diff --git a/.github/workflows/windows-native.yml b/.github/workflows/windows-native.yml index abe4d5a9c..5120d99c2 100644 --- a/.github/workflows/windows-native.yml +++ b/.github/workflows/windows-native.yml @@ -191,9 +191,9 @@ jobs: - name: Check vswhere shell: cmd run: | - C:\ProgramData\Chocolatey\bin\vswhere.exe /? || (REM) - C:\ProgramData\Chocolatey\bin\vswhere.exe -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x64.x64 -property installationPath || (REM) - C:\ProgramData\Chocolatey\bin\vswhere.exe -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath || (REM) + C:\ProgramData\Chocolatey\bin\vswhere.exe /? || echo "1 failed" + C:\ProgramData\Chocolatey\bin\vswhere.exe -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x64.x64 -property installationPath || echo "2 failed" + C:\ProgramData\Chocolatey\bin\vswhere.exe -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath || echo "3 failed" - name: Test shell: bash # Sometimes running cli_tests in parallel causes instability [???]