Skip to content

Commit

Permalink
Build example in build stage to be used during test stage
Browse files Browse the repository at this point in the history
  • Loading branch information
timsaucer committed Nov 11, 2024
1 parent 5551ef9 commit 50b4bf2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Python package
run: maturin build --release --strip --features substrait
run: |
maturin build --release --strip --features substrait
cd examples/ffi-table-provider
maturin build --release --strip
- name: List Mac wheels
run: find target/wheels/

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ jobs:
- name: Test FFI module
run: |
cd examples/ffi-table-provider
maturin build --release --strip
pytest _test_table_provider.py
- name: Cache the generated dataset
Expand Down

0 comments on commit 50b4bf2

Please sign in to comment.