Skip to content

Commit 1421647

Browse files
committed
Fixed workflow. Probably.
Signed-off-by: Pavel Kirilin <[email protected]>
1 parent 8626747 commit 1421647

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
uses: messense/maturin-action@v1
138138
with:
139139
target: ${{ matrix.target }}
140-
args: --release --out dist
140+
args: --release --out dist --find-interpreter
141141
manylinux: musllinux_1_2
142142
- name: Upload wheels
143143
uses: actions/upload-artifact@v3

.github/workflows/test.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,22 @@ jobs:
8383
- name: Run pytest
8484
run: tox -v
8585

86+
musllinux:
87+
runs-on: ubuntu-latest
88+
strategy:
89+
matrix:
90+
target:
91+
- x86_64-unknown-linux-musl
92+
- i686-unknown-linux-musl
93+
steps:
94+
- uses: actions/checkout@v3
95+
- uses: actions/setup-python@v4
96+
with:
97+
python-version: '3.10'
98+
architecture: x64
99+
- name: Build wheels
100+
uses: messense/maturin-action@v1
101+
with:
102+
target: ${{ matrix.target }}
103+
args: --release --out dist --find-interpreter
104+
manylinux: musllinux_1_2

0 commit comments

Comments
 (0)