From e6143ebb472a8c14d4770748a1716e3631b47b72 Mon Sep 17 00:00:00 2001 From: Robert Kruszewski Date: Fri, 6 Mar 2026 16:11:49 +0000 Subject: [PATCH] No longer need to install visual studio for windows machines Signed-off-by: Robert Kruszewski --- .github/workflows/ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff73213e939..f039682c8b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -649,17 +649,10 @@ jobs: if: github.repository == 'vortex-data/vortex' with: sccache: s3 - - uses: actions/checkout@v5 - - name: Install Visual Studio Build Tools (Windows) - if: matrix.os == 'windows-x64' - run: | - $flags = '-C debuginfo=0' - echo "RUSTFLAGS=$flags" >> $env:GITHUB_ENV - choco install visualstudio2022buildtools --package-parameters ` - "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows11SDK.26100 --passive" -y + - uses: actions/checkout@v6 - name: Setup Python (Windows) if: matrix.os == 'windows-x64' - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" - id: setup-rust