We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa88d65 commit a8fa0fbCopy full SHA for a8fa0fb
2 files changed
.github/workflows/build.yml
@@ -167,6 +167,15 @@ jobs:
167
args: --features protoc,substrait --out dist
168
rustup-components: rust-std
169
170
+ - name: Build FFI test library
171
+ uses: PyO3/maturin-action@v1
172
+ with:
173
+ target: x86_64-unknown-linux-gnu
174
+ manylinux: "2_28"
175
+ working-directory: examples/datafusion-ffi-example
176
+ args: --out ../../dist
177
+ rustup-components: rust-std
178
+
179
- name: Archive wheels
180
uses: actions/upload-artifact@v6
181
with:
.github/workflows/test.yml
@@ -112,7 +112,6 @@ jobs:
112
- name: FFI unit tests
113
run: |
114
cd examples/datafusion-ffi-example
115
- uv run --no-project maturin develop --uv
116
uv run --no-project pytest python/tests/_test*.py
117
118
- name: Cache the generated dataset
0 commit comments