Skip to content

Commit

Permalink
See if the tools actually got installed
Browse files Browse the repository at this point in the history
  • Loading branch information
demianmnave committed Nov 19, 2024
1 parent 808179e commit 60bc50d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ninja-msvc17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
'--add', 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'
Write-Host $modify.ExitCode
$vsbin = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.40.33807\bin\Hostx64\x64'
Test-Path -Path $vsbin | Should -Be $true
Get-ChildItem -Path (Join-Path $vspath 'VC\Tools\MSVC')
$clexe = Join-Path $vsbin 'cl.exe'
Test-Path -Path $clexe | Should -Be $true
#$vsbin = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.40.33807\bin\Hostx64\x64'
#Test-Path -Path $vsbin | Should -Be $true
& $clexe /?
#$clexe = Join-Path $vsbin 'cl.exe'
#Test-Path -Path $clexe | Should -Be $true
#& $clexe /?

0 comments on commit 60bc50d

Please sign in to comment.