Skip to content

Commit 8d28556

Browse files
committed
fix(ci): maturin build+wheel install (no venv on runner)
1 parent 2fd070c commit 8d28556

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,11 @@ jobs:
160160
pip install "maturin>=1,<2"
161161
162162
- name: Build and install diffctx Rust extension
163-
working-directory: diffctx
164-
run: maturin develop --release
163+
shell: bash
164+
run: |
165+
cd diffctx
166+
maturin build --release --out wheelhouse
167+
pip install --force-reinstall --no-deps wheelhouse/*.whl
165168
166169
- name: Run Tests with Coverage
167170
shell: bash

0 commit comments

Comments
 (0)