-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
set -e -x | ||
|
||
# Install a system package required by our library | ||
#yum install -y atlas-devel | ||
|
||
PYBINS=( | ||
"/opt/python/cp35-cp35m/bin" | ||
"/opt/python/cp36-cp36m/bin" | ||
"/opt/python/cp37-cp37m/bin" | ||
) | ||
|
||
# Compile wheels | ||
for PYBIN in ${PYBINS[@]}; do | ||
#"${PYBIN}/pip" install -r /io/requirements.txt | ||
"${PYBIN}/pip" wheel /io/ -w wheelhouse/ | ||
done | ||
|
||
# Bundle external shared libraries into the wheels | ||
#for whl in wheelhouse/*.whl; do | ||
# auditwheel repair "$whl" -w /io/wheelhouse/ | ||
#done | ||
|
||
# Install packages and test | ||
#for PYBIN in ${PYBINS[@]}; do | ||
# "${PYBIN}/pip" install python-manylinux-demo --no-index -f /io/wheelhouse | ||
# (cd "$HOME"; "${PYBIN}/nosetests" pymanylinuxdemo) | ||
#done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters