Skip to content

Commit

Permalink
Add hudi feature (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmturner authored Jan 6, 2025
1 parent a1345e1 commit e705065
Show file tree
Hide file tree
Showing 22 changed files with 1,583 additions and 513 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,31 @@ jobs:
- name: Run Deltalake tests
run: |
cargo test --features=deltalake extension_cases::deltalake
test-hudi:
name: Hudi
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64]
rust: [stable]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Cache Cargo
uses: actions/cache@v2
with:
path: /home/runner/.cargo
key: cargo-dft-cache-
- name: Cache Rust dependencies
uses: actions/cache@v2
with:
path: /home/runner/target
key: target-dft-cache-
- name: Setup Rust toolchain
run: |
rustup toolchain install ${{ matrix.rust }}
rustup default ${{ matrix.rust }}
- name: Run Hudi tests
run: |
cargo test --features=hudi extension_cases::hudi
Loading

0 comments on commit e705065

Please sign in to comment.