Skip to content

Commit

Permalink
ci: no --release
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed Sep 12, 2024
1 parent 321d204 commit c080291
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
args: --out dist
sccache: 'true'
manylinux: auto

Expand All @@ -60,6 +60,7 @@ jobs:
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist

- name: pytest
if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
shell: bash
Expand All @@ -70,6 +71,7 @@ jobs:
pip install roaring_landmask --no-index --find-links dist --force-reinstall
pip install pytest pytest-benchmark numpy shapely
pytest
- name: pytest
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
uses: uraimo/run-on-arch-action@v2
Expand Down

0 comments on commit c080291

Please sign in to comment.