File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments