Commit ad9dc83 1 parent 303bc11 commit ad9dc83 Copy full SHA for ad9dc83
File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 92
92
run : |
93
93
mkdir -p wheels
94
94
mkdir -p dist
95
+ mkdir -p dist_full
95
96
96
97
# Compile wheels
97
98
for PYBIN in /opt/python/*/bin; do
@@ -102,21 +103,23 @@ jobs:
102
103
103
104
# Bundle external shared libraries into the wheels
104
105
for whl in wheels/*.whl; do
105
- if [[ "$whl" == " wheels/franky_panda-* .whl" ]]; then
106
- auditwheel repair "$whl" -w dist /
106
+ if [[ "$whl" =~ wheels/franky_panda-.*\ .whl ]]; then
107
+ auditwheel repair "$whl" -w dist_full /
107
108
else
108
- cp "$whl" dist /
109
+ cp "$whl" dist_full /
109
110
fi
110
111
done
111
112
112
113
# Install packages and test
113
114
for PYBIN in /opt/python/*/bin/; do
114
115
if [[ "${PYBIN}" =~ ${PYBIN_SUPPORTED_VERSIONS} ]]; then
115
- "${PYBIN}/pip" install franky-panda --no-index -f dist
116
+ "${PYBIN}/pip" install franky-panda --no-index -f dist_full
116
117
# (cd "$HOME"; "${PYBIN}/nosetests" -w /io/tests)
117
118
fi
118
119
done
119
120
121
+ cp dist_full/franky_panda-*.whl dist/
122
+
120
123
ls dist
121
124
122
125
- name : Publish python package
You can’t perform that action at this time.
0 commit comments