Skip to content

Commit

Permalink
fix(ci): fix interpreter used by maturin (#266)
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke authored Jul 22, 2024
1 parent a145c7f commit dc138ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,5 @@ jobs:
with:
manylinux: auto
command: build
args: "-o dist --interpreter python${{ matrix.python-version }}"
args: "-o dist"
target: ${{ steps.target.outputs.target }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
manylinux: auto
command: build
args: "--release -o dist --interpreter python${{ matrix.python-version }}"
args: "--release -o dist"
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-unknown-linux-gnu' || null }}
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -40,7 +40,7 @@ jobs:
uses: messense/maturin-action@v1
with:
command: build
args: "--release -o dist --interpreter python${{ matrix.python-version }}"
args: "--release -o dist"
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-apple-darwin' || null }}
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -60,7 +60,7 @@ jobs:
uses: messense/maturin-action@v1
with:
command: build
args: "--release -o dist --interpreter python${{ matrix.python-version }}"
args: "--release -o dist"
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit dc138ef

Please sign in to comment.