From fa36adeb719b5d2a6ce8e1b69d3bbd8e2bd70349 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Thu, 12 Feb 2026 13:46:01 +0100 Subject: [PATCH] ci: [refactor] Drop last use of pwsh Seems easier to just use Bash and Python consistently. --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2059adc4c7b..d79486fe4ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -232,14 +232,14 @@ jobs: run: py -3 .github/ci-windows.py "standard" github_import_vs_env - name: Get tool information - shell: pwsh run: | - cmake -version | Tee-Object -FilePath "cmake_version" - Write-Output "---" - msbuild -version | Tee-Object -FilePath "msbuild_version" - $env:VCToolsVersion | Tee-Object -FilePath "toolset_version" + set -o errexit -o pipefail -o xtrace -o nounset + + cmake -version | tee cmake_version + echo '---' + msbuild.exe -version | tee msbuild_version + echo "${VCToolsVersion-}" | tee toolset_version py -3 --version - Write-Host "PowerShell version $($PSVersionTable.PSVersion.ToString())" bash --version - name: Using vcpkg with MSBuild