From b9109bdacd4b65ccbf75cd1246f0fcc72be48edf Mon Sep 17 00:00:00 2001 From: Eduard Karacharov Date: Sat, 21 Dec 2024 15:55:46 +0200 Subject: [PATCH] try windows-2025 image --- .github/workflows/rust.yml | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 71ff44e43d21..1c3194746158 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -326,26 +326,22 @@ jobs: env: POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} -# Temporarily commenting out the Windows flow, the reason is enormously slow running build -# Waiting for new Windows 2025 github runner -# Details: https://github.com/apache/datafusion/issues/13726 -# -# windows: -# name: cargo test (win64) -# runs-on: windows-latest -# steps: -# - uses: actions/checkout@v4 -# with: -# submodules: true -# - name: Setup Rust toolchain -# uses: ./.github/actions/setup-windows-builder -# - name: Run tests (excluding doctests) -# shell: bash -# run: | -# export PATH=$PATH:$HOME/d/protoc/bin -# cargo test --lib --tests --bins --features avro,json,backtrace -# cd datafusion-cli -# cargo test --lib --tests --bins --all-features + windows: + name: cargo test (win64) + runs-on: windows-2025 + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - name: Setup Rust toolchain + uses: ./.github/actions/setup-windows-builder + - name: Run tests (excluding doctests) + shell: bash + run: | + export PATH=$PATH:$HOME/d/protoc/bin + cargo test --lib --tests --bins --features avro,json,backtrace + cd datafusion-cli + cargo test --lib --tests --bins --all-features macos: name: cargo test (macos)