Skip to content

Commit 9dd8de6

Browse files
mwiewiorclaude
andcommitted
Fix maturin build path issue
The previous change broke the build by looking for Cargo.toml in the wrong directory. Reverted to running maturin from polars-bio-bench with explicit -m ../Cargo.toml path. This maintains the cargo cache improvements while fixing the build error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent eba5bd7 commit 9dd8de6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,8 @@ jobs:
217217
# Install maturin in poetry virtualenv
218218
cd polars-bio-bench
219219
poetry run pip install maturin
220-
# Build from repo root to ensure proper cache usage
221-
cd ..
222-
poetry run -C polars-bio-bench maturin develop --release
220+
# Build from repo root with explicit Cargo.toml path
221+
poetry run maturin develop --release -m ../Cargo.toml
223222
224223
- name: Run target benchmarks
225224
run: |

0 commit comments

Comments
 (0)