File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9797 choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended" -y
9898 # Install Windows SDK
9999 choco install windows-sdk-10-version-2004-all -y
100- # Refresh environment variables
100+
101+ - name : Setup Windows environment
102+ if : matrix.os == 'windows-latest'
103+ run : |
104+ # Import Chocolatey profile to refresh environment variables
105+ Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
101106 refreshenv
107+ # Verify that required tools are available
108+ echo "Checking installed tools..."
109+ cl.exe /? > $null 2>&1 && echo "Visual Studio Build Tools: OK" || echo "Visual Studio Build Tools: NOT FOUND"
110+ echo "Windows SDK should be available in PATH"
102111
103112 - name : Install dependencies
104113 run : |
You can’t perform that action at this time.
0 commit comments