diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f4e3d2fbf4d6..71ff44e43d21 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -326,22 +326,26 @@ jobs: env: POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} - 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 +# 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 macos: name: cargo test (macos)