This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new a4e32dbd9 ci(rust): add test on windows with minimal deps versions
(#3200)
a4e32dbd9 is described below
commit a4e32dbd96e15cae13ff9297d6522ea0eff70657
Author: eitsupi <[email protected]>
AuthorDate: Fri Jul 25 16:31:32 2025 +0900
ci(rust): add test on windows with minimal deps versions (#3200)
Since the recently added Windows-specific dependencies only have minimum
versions requirements like `>= 0.59.0`, the minimum version test will be
added to ensure that works with older versions.
---
.github/workflows/rust.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 4b633eeb4..c5d0d0c11 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -55,6 +55,8 @@ jobs:
include:
- os: ubuntu-latest
minimal-versions: true # Test can be built with older arrow except
adbc_datafusion
+ - os: windows-latest
+ minimal-versions: true # Test can be built with older windows
specific deps
name: Rust ${{ matrix.os }} ${{ matrix.minimal-versions && '(minimal
versions for adbc_core)' || '' }}
runs-on: ${{ matrix.os }}
env:
@@ -65,7 +67,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- - name: Cargo update for minimal (arrow) version
+ - name: Cargo update for minimal versions
if: ${{ matrix.minimal-versions }}
working-directory: rust
run: |