Skip to content

Commit

Permalink
WASM Scalar UDFs (datafusion-contrib#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmturner authored Feb 4, 2025
1 parent a36b84a commit 688a128
Show file tree
Hide file tree
Showing 19 changed files with 1,409 additions and 48 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,31 @@ jobs:
- name: Run HuggingFace tests
run: |
cargo test --features=huggingface extension_cases::huggingface
test-udfs-wasm:
name: UDFs-WASM
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 UDFs WASM tests
run: |
cargo test --features=udfs-wasm extension_cases::udfs_WASM
Loading

0 comments on commit 688a128

Please sign in to comment.