File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137
137
uses : messense/maturin-action@v1
138
138
with :
139
139
target : ${{ matrix.target }}
140
- args : --release --out dist
140
+ args : --release --out dist --find-interpreter
141
141
manylinux : musllinux_1_2
142
142
- name : Upload wheels
143
143
uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change 83
83
- name : Run pytest
84
84
run : tox -v
85
85
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