We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c27d06 commit f159abaCopy full SHA for f159aba
.github/workflows/ci.yml
@@ -191,13 +191,15 @@ jobs:
191
arch: x64
192
193
- name: Get tool information
194
+ shell: pwsh
195
run: |
- cmake --version | tee cmake_version
196
- echo "---"
197
- msbuild -version | tee msbuild_version
198
- echo "$VCToolsVersion" | tee toolset_version
+ cmake -version | Tee-Object -FilePath "cmake_version"
+ Write-Output "---"
+ msbuild -version | Tee-Object -FilePath "msbuild_version"
199
+ $env:VCToolsVersion | Tee-Object -FilePath "toolset_version"
200
py -3 --version
- $0 --version
201
+ Write-Host "PowerShell version $($PSVersionTable.PSVersion.ToString())"
202
+ bash --version
203
204
- name: Using vcpkg with MSBuild
205
0 commit comments