From 036fe8b4b6e124a2d6fdbbb6c44a4fd9f4595477 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Tue, 9 Sep 2025 22:08:56 -0300 Subject: [PATCH] [ci/windows] install-msvc.ps1: Remove useless step Signed-off-by: Caio Oliveira --- .ci/windows/install-msvc.ps1 | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.ci/windows/install-msvc.ps1 b/.ci/windows/install-msvc.ps1 index 5bae54d97b..b88f727ed8 100755 --- a/.ci/windows/install-msvc.ps1 +++ b/.ci/windows/install-msvc.ps1 @@ -40,10 +40,3 @@ if ($ExitCode -ne 0) { } Write-Host "Finished installing Visual Studio Build Tools" - -# Add paths to GitHub Actions environment if running in CI -if ("$env:GITHUB_ACTIONS" -eq "true") { - $VSPath = Join-Path $VSROOT "VC\Tools\MSVC" - Write-Host "Adding Visual Studio paths to GitHub Actions environment" - echo "$VSPath\bin\Hostx64\x64" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append -}