-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disabled OSX 10.11 wheel builds Updated travis cfg for osx builds Removed system package builds. Updated travis cfg to not login or push to docker on PR builds. Switched testing to pytest. Removed channel close on channel object de-allocation. Removed GIL release on session and channel object de-allocation. Updated Changelog. Removed out of repo package files before building wheels and updated gitignore - resolves #14 Migrated manylinux wheel builds to openssl 1.1. Migrated Windows builds to openssl 1.1. Updated changelog. Updated manylinux wheel embedded libssh2 version.
- Loading branch information
Showing
50 changed files
with
2,371 additions
and
1,876 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ build | |
*~ | ||
*.so | ||
.idea/ | ||
ssh2/libssh2.so* |
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
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
Git LFS file not shown
Git LFS file not shown
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 |
---|---|---|
@@ -1,29 +1,35 @@ | ||
FROM quay.io/pypa/manylinux1_x86_64 | ||
|
||
ENV CMAKE cmake-2.8.11.1-5.4.x86_64 | ||
ENV OPENSSL openssl-1.0.2p | ||
ENV OPENSSL openssl-1.1.1b | ||
ENV SYSTEM_LIBSSH2 1 | ||
|
||
RUN yum install zlib-devel -y | ||
|
||
ADD libssh2.tar.gz libssh2.tar.gz | ||
ADD ${CMAKE}.rpm cmake.rpm | ||
ADD http://www.openssl.org/source/${OPENSSL}.tar.gz ${OPENSSL}.tar.gz | ||
ADD ${OPENSSL}.tar.gz ${OPENSSL}.tar.gz | ||
ADD local-perl-5.10.0-62.ep.x86_64.rpm local-perl.rpm | ||
ADD local-perl-Pod-Simple-3.07-62.ep.x86_64.rpm local-perl-Pod-Simple.rpm | ||
ADD local-perl-Module-Pluggable-3.60-62.ep.x86_64.rpm local-perl-Module-Pluggable.rpm | ||
ADD local-perl-XSLoader-0.10-1.noarch.rpm local-perl-XSLoader.rpm | ||
ADD local-perl-version-0.74-62.ep.x86_64.rpm local-perl-version.rpm | ||
ADD local-perl-libs-5.10.0-62.ep.x86_64.rpm local-perl-libs.rpm | ||
ADD local-perl-Pod-Escapes-1.04-62.ep.x86_64.rpm local-perl-Pod-Escapes.rpm | ||
|
||
RUN rpm -i cmake.rpm | ||
RUN rpm -i cmake.rpm local-perl-Module-Pluggable.rpm local-perl-Pod-Escapes.rpm local-perl-Pod-Simple.rpm local-perl-XSLoader.rpm local-perl-version.rpm local-perl-libs.rpm local-perl.rpm | ||
|
||
# Openssl | ||
RUN tar -xzf ${OPENSSL}.tar.gz && \ | ||
cd ${OPENSSL} && \ | ||
RUN cd ${OPENSSL}.tar.gz/${OPENSSL} && \ | ||
./config --prefix=/usr --openssldir=/usr/openssl threads shared && \ | ||
make -j4 && make install | ||
|
||
# Libssh2 | ||
RUN mkdir -p build_libssh2 && cd build_libssh2 && \ | ||
cmake ../libssh2.tar.gz -DBUILD_SHARED_LIBS=ON -DENABLE_ZLIB_COMPRESSION=ON \ | ||
cmake ../libssh2.tar.gz/libssh2-master -DBUILD_SHARED_LIBS=ON -DENABLE_ZLIB_COMPRESSION=ON \ | ||
-DENABLE_CRYPT_NONE=ON -DENABLE_MAC_NONE=ON -DCMAKE_INSTALL_PREFIX=/usr && \ | ||
cmake --build . --config Release --target install | ||
|
||
RUN rm -rf ${OPENSSL}* build_libssh2 | ||
RUN rm -rf ${OPENSSL}* build_libssh2 libssh2.tar.gz | ||
|
||
VOLUME /var/cache |
Binary file not shown.
Binary file not shown.
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
ci/docker/manylinux/local-perl-Module-Pluggable-3.60-62.ep.x86_64.rpm
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
ci/docker/manylinux/local-perl-Pod-Escapes-1.04-62.ep.x86_64.rpm
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
ci/docker/manylinux/local-perl-Pod-Simple-3.07-62.ep.x86_64.rpm
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
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
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
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
Oops, something went wrong.