diff options
author | Max Edwards <me@maxedwards.me> | 2024-02-28 13:40:08 +0000 |
---|---|---|
committer | Max Edwards <me@maxedwards.me> | 2024-02-28 13:52:22 +0000 |
commit | 1484998b6b08c93714325952bd94dd8a2de446ae (patch) | |
tree | 75f6056bf5911a65cf3c84f85d509fcf9eb5da4d | |
parent | ba907f96ad37c09c49c0e1532fad118fcb8dd4a8 (diff) |
ci: print python version on win64 native job
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5857753e14..2559e1012c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,14 +148,15 @@ jobs: with: arch: x64 - - name: Check MSBuild and Qt + - name: Get tool information run: | msbuild -version | Out-File -FilePath "$env:GITHUB_WORKSPACE\msbuild_version" Get-Content -Path "$env:GITHUB_WORKSPACE\msbuild_version" $env:VCToolsVersion | Out-File -FilePath "$env:GITHUB_WORKSPACE\toolset_version" - Get-Content -Path "$env:GITHUB_WORKSPACE\toolset_version" + Write-Host "VCToolsVersion $(Get-Content -Path "$env:GITHUB_WORKSPACE\toolset_version")" $env:CI_QT_URL | Out-File -FilePath "$env:GITHUB_WORKSPACE\qt_url" $env:CI_QT_CONF | Out-File -FilePath "$env:GITHUB_WORKSPACE\qt_conf" + py -3 --version - name: Restore static Qt cache id: static-qt-cache |