This is an automated email from the ASF dual-hosted git repository.

xushiyan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 9f6505b  ci: run rust-tests on windows (#92)
9f6505b is described below

commit 9f6505b796fb9a942eb8bd9a0f6a6146c1713470
Author: Ryan Tan <[email protected]>
AuthorDate: Sun Mar 22 03:04:29 2026 +0900

    ci: run rust-tests on windows (#92)
    
    
    
    ---------
    
    Co-authored-by: Shiyan Xu <[email protected]>
---
 .github/workflows/ci.yml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f85508a..a8c0b51 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -53,7 +53,6 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        # TODO: add windows which does not support container
         os: [ ubuntu-24.04 ]
     runs-on: ${{ matrix.os }}
     container:
@@ -78,6 +77,15 @@ jobs:
           path: ./cov-reports
           if-no-files-found: 'error'
 
+  rust-tests-windows:
+    runs-on: windows-2025
+    # disable until https://github.com/apache/hudi-rs/issues/445 is resolved
+    if: false    
+    steps:
+      - uses: actions/checkout@v5
+      - name: Run unit tests on Windows with no coverage report
+        run: cargo test --no-fail-fast --all-targets --all-features --workspace
+
   python-tests:
     strategy:
       fail-fast: false

Reply via email to