File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def main():
2222 print (audit_wheel_output .stdout )
2323
2424 if audit_wheel_output .stderr :
25- print (f"**Error:**\n ```{ audit_wheel_output .stderr } ```" )
25+ print (f"**Error:**\n ```\n { audit_wheel_output .stderr } \n ```" )
2626
2727 print ("---" )
2828
Original file line number Diff line number Diff line change @@ -198,16 +198,23 @@ jobs:
198198
199199 audit-wheels :
200200 needs : build-wheels
201- runs-on : ubuntu-latest
201+ strategy :
202+ matrix :
203+ os : [ubuntu-22.04, ubuntu-22.04-arm]
204+ include :
205+ - os : ubuntu-22.04
206+ arch : x86_64
207+ - os : ubuntu-22.04-arm
208+ arch : aarch64
209+ runs-on : ${{ matrix.os }}
202210 env :
203211 PIP_DISABLE_PIP_VERSION_CHECK : 1
204212 steps :
205213 - uses : actions/checkout@v4
206- - name : Download all wheels
214+ - name : Download wheel
207215 uses : actions/download-artifact@v4
208216 with :
209- merge-multiple : true
210- pattern : " bdist_wheel_*"
217+ name : bdist_wheel_${{ matrix.os }}_${{ matrix.arch }}
211218 path : wheels/
212219 - name : Set up Python
213220 uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments