File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ script:
41
41
- if [[ -z $CIBW_BEFORE_BUILD ]]; then flake8 ; fi
42
42
- if [[ -z $CIBW_BEFORE_BUILD ]]; then py.test -v --timeout 20 --ignore=tmp-build --import-mode append ; fi
43
43
- if [[ ! -z $CIBW_BEFORE_BUILD ]]; then cibuildwheel --output-dir wheelhouse ; ls -la wheelhouse/ ; fi
44
- - if [[ $TRAVIS_OS_NAME == linux && ! -z $CIBW_BEFORE_BUILD ]]; then DOCKER_IMAGES=quay.io/pypa/manylinux1_x86_64:latest tools/test-manylinux.sh ; fi
44
+ - if [[ $TRAVIS_OS_NAME == linux && ! -z $CIBW_BEFORE_BUILD ]]; then DOCKER_IMAGES=centos:6.6 tools/test-manylinux.sh ; fi
45
45
46
46
47
47
deploy :
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ set -ex
18
18
echo " # Building OpenSSL ${OPENSSL_VERSION} "
19
19
20
20
21
- if [[ ! -f build-openssl/config ]]; then
21
+ if ! grep -q " ^VERSION=${OPENSSL_VERSION} $" build-openssl/Makefile ; then
22
+ echo " No usable build-openssl directory: downloading ${OPENSSL_VERSION} "
22
23
rm -rf build-openssl
23
24
mkdir -p build-openssl
24
25
pushd build-openssl
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ function run_single_in_docker {
24
24
# Run single test inside docker container
25
25
26
26
# Detect OS
27
- if grep -qi centos /etc/system-release ; then
27
+ if grep -qi centos /etc/system-release /etc/redhat-release ; then
28
28
setup_centos
29
29
elif grep -qi ubuntu /etc/os-release ; then
30
30
setup_ubuntu
You can’t perform that action at this time.
0 commit comments