Skip to content

Commit 50b4bf2

Browse files
committed
Build example in build stage to be used during test stage
1 parent 5551ef9 commit 50b4bf2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,10 @@ jobs:
156156
repo-token: ${{ secrets.GITHUB_TOKEN }}
157157

158158
- name: Build Python package
159-
run: maturin build --release --strip --features substrait
159+
run: |
160+
maturin build --release --strip --features substrait
161+
cd examples/ffi-table-provider
162+
maturin build --release --strip
160163
- name: List Mac wheels
161164
run: find target/wheels/
162165

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ jobs:
113113
- name: Test FFI module
114114
run: |
115115
cd examples/ffi-table-provider
116-
maturin build --release --strip
117116
pytest _test_table_provider.py
118117
119118
- name: Cache the generated dataset

0 commit comments

Comments
 (0)