Skip to content

Commit

Permalink
Adapt maturin action
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Jul 13, 2024
1 parent 8135ff7 commit 8d822f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maturin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: ./vrp-cli
target: ${{ matrix.target }}
args: --release -i python3.10 --out dist
args: --release --out dist -i python3.12
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -40,14 +40,14 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: ./vrp-cli
target: ${{ matrix.target }}
args: --release -i python3.10 --out dist
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -64,13 +64,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: ./vrp-cli
target: ${{ matrix.target }}
args: --release -i python3.10 --out dist
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 8d822f5

Please sign in to comment.