Skip to content

Commit

Permalink
Wheels (#69)
Browse files Browse the repository at this point in the history
* Updated ci cfg
* Updated changelog, manylinux scripts.
  • Loading branch information
pkittenis authored Dec 3, 2022
1 parent cac4dcc commit a62aaf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ci/build-manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ docker_repo="parallelssh/ssh-manylinux"
docker_files=(
"ci/docker/manylinux/Dockerfile"
"ci/docker/manylinux/Dockerfile.2014_x86_64"
"ci/docker/manylinux/Dockerfile.manylinux_2_24_x86_64"
"ci/docker/manylinux/Dockerfile.manylinux_2_28_x86_64"
# "ci/docker/manylinux/Dockerfile.manylinux_2_24_x86_64"
# "ci/docker/manylinux/Dockerfile.manylinux_2_28_x86_64"
)

rm -rf local build ssh/libssh.* ssh/*.so
Expand All @@ -30,8 +30,8 @@ python ci/appveyor/fix_version.py .
if [[ $(uname -m) == "aarch64" ]]; then
docker_files=(
"ci/docker/manylinux/Dockerfile.aarch64"
"ci/docker/manylinux/Dockerfile.aarch64_2_24"
"ci/docker/manylinux/Dockerfile.aarch64_2_28"
# "ci/docker/manylinux/Dockerfile.aarch64_2_24"
# "ci/docker/manylinux/Dockerfile.aarch64_2_28"
)
fi

Expand Down
4 changes: 2 additions & 2 deletions ci/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Compile wheels
rm -rf /io/build
# For testing
#for PYBIN in $(ls -1d /opt/python/cp36-cp36m/bin | grep -v cpython); do
#for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython); do
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
done
Expand All @@ -29,7 +29,7 @@ for whl in wheelhouse/*.whl; do
done

# Install packages and test
#for PYBIN in $(ls -1d /opt/python/cp36-cp36m/bin | grep -v cpython); do
#for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython); do
"${PYBIN}/pip" install ssh-python --no-index -f /io/wheelhouse
(cd "$HOME"; "${PYBIN}/python" -c 'from ssh.session import Session; Session()')
Expand Down

0 comments on commit a62aaf2

Please sign in to comment.