We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5551ef9 commit 50b4bf2Copy full SHA for 50b4bf2
.github/workflows/build.yml
@@ -156,7 +156,10 @@ jobs:
156
repo-token: ${{ secrets.GITHUB_TOKEN }}
157
158
- name: Build Python package
159
- run: maturin build --release --strip --features substrait
+ run: |
160
+ maturin build --release --strip --features substrait
161
+ cd examples/ffi-table-provider
162
+ maturin build --release --strip
163
- name: List Mac wheels
164
run: find target/wheels/
165
.github/workflows/test.yaml
@@ -113,7 +113,6 @@ jobs:
113
- name: Test FFI module
114
run: |
115
cd examples/ffi-table-provider
116
- maturin build --release --strip
117
pytest _test_table_provider.py
118
119
- name: Cache the generated dataset
0 commit comments