From f1d83688c175c6bcc127beb056dd0ef4ab8c676f Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Tue, 20 Jan 2026 15:18:29 +0000 Subject: [PATCH] Set env variable so cache will pick it up Signed-off-by: Adam Gutglick --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87728801eff..20b3b515506 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -541,6 +541,8 @@ jobs: - 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 - name: Setup Python (Windows) @@ -559,8 +561,6 @@ jobs: tool: nextest - name: Rust Tests (Windows) if: matrix.os == 'windows-x64' - env: - RUSFLAGS: "-C debuginfo=0" run: | cargo nextest run --locked --workspace --all-features --no-fail-fast --exclude vortex-bench --exclude vortex-python --exclude vortex-duckdb --exclude vortex-fuzz --exclude duckdb-bench --exclude lance-bench --exclude datafusion-bench --exclude random-access-bench --exclude compress-bench --exclude xtask - name: Rust Tests (Other)