Skip to content

Commit

Permalink
update maturin pipeline path
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Dec 27, 2023
1 parent f0fa902 commit d29780c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: -i python --release --out dist --sdist --manifest-path crates/cryo_python/Cargo.toml
args: -i python --release --out dist --sdist --manifest-path crates/python/Cargo.toml
- name: Install built wheels - x86_64
run: |
pip install cryo_python --no-index --find-links dist --force-reinstall
- name: Build wheels - universal2
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11", "3.12"]'), matrix.python-version) }}
uses: PyO3/maturin-action@v1
with:
args: -i python --release --target universal2-apple-darwin --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i python --release --target universal2-apple-darwin --out dist --manifest-path crates/python/Cargo.toml
- name: Install built wheels - universal2
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11", "3.12"]'), matrix.python-version) }}
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -i python --release --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i python --release --out dist --manifest-path crates/python/Cargo.toml
- name: Install built wheel
run: |
pip install cryo_python --no-index --find-links dist --force-reinstall
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i ${{ matrix.python-version }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i ${{ matrix.python-version }} --release --out dist --manifest-path crates/python/Cargo.toml
- name: Python UnitTest - cryo_python
if: matrix.target == 'x86_64'
run: |
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml
- uses: uraimo/[email protected]
# skipped cross compiled pypy wheel tests for now
if: ${{ !startsWith(matrix.python, 'pypy') }}
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml
- name: Python UnitTest - cryo_python
run: |
pip install cryo_python --no-index --find-links dist
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml
- name: Install wheel
run: |
pip install cryo_python --no-index --find-links dist
Expand Down

0 comments on commit d29780c

Please sign in to comment.