File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -156,11 +156,18 @@ jobs:
156
156
run : python3 -m pip wheel . -w ./wheelhouse/ --verbose
157
157
- name : Auditing wheel
158
158
run : for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat linux_armv7l -w wheelhouse/audited/; done
159
+ - name : Install tweaked auditwheel and add armv6l tag
160
+ run : |
161
+ python3 -m venv newauditvenv
162
+ source newauditvenv/bin/activate
163
+ python3 -m pip install git+https://github.com/luxonis/auditwheel@main
164
+ for whl in wheelhouse/*.whl; do python3 -m auditwheel addtag -t linux_armv7l linux_armv6l -w wheelhouse/postaudited/ "$whl"; done
165
+ deactivate
159
166
- name : Archive wheel artifacts
160
167
uses : actions/upload-artifact@v3
161
168
with :
162
169
name : audited-wheels
163
- path : wheelhouse/audited /
170
+ path : wheelhouse/postaudited /
164
171
- name : Deploy wheels to artifactory (if not a release)
165
172
if : startsWith(github.ref, 'refs/tags/v') != true
166
173
run : bash ./ci/upload-artifactory.sh
You can’t perform that action at this time.
0 commit comments