Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 35c1421

Browse files
committed
move PLAT env variable, remove sudo, docker, add DEBUG_PRINT
1 parent c8a29b6 commit 35c1421

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.travis.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ env:
55
- BUILD_COMMIT=e94cec800304a6a467cf90ce4e7d3e207770b4b4
66
- BUILD_DEPENDS=cython
77
- TEST_DEPENDS=pytest
8-
- PLAT=x86_64
98
- UNICODE_WIDTH=32
109
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
1110
# Following generated with
@@ -19,9 +18,7 @@ env:
1918
language: python
2019
# Default Python version is usually 2.7
2120
python: 3.6
22-
sudo: required
2321
dist: bionic
24-
services: docker
2522

2623
matrix:
2724
exclude:
@@ -30,20 +27,23 @@ matrix:
3027
include:
3128
- os: linux
3229
env:
30+
- PLAT=x86_64
3331
- MB_PYTHON_VERSION=3.6
3432
- os: linux
3533
env:
3634
- MB_PYTHON_VERSION=3.6
3735
- PLAT=i686
3836
- os: linux
3937
env:
38+
- PLAT=x86_64
4039
- MB_PYTHON_VERSION=3.7
4140
- os: linux
4241
env:
4342
- MB_PYTHON_VERSION=3.7
4443
- PLAT=i686
4544
- os: linux
4645
env:
46+
- PLAT=x86_64
4747
- MB_PYTHON_VERSION=3.8
4848
- os: linux
4949
env:
@@ -53,18 +53,21 @@ matrix:
5353
language: generic
5454
osx_image: xcode10.1
5555
env:
56+
- PLAT=x86_64
5657
- MB_PYTHON_VERSION=3.6
5758
- MB_PYTHON_OSX_VER=10.9
5859
- os: osx
5960
language: generic
6061
osx_image: xcode10.1
6162
env:
63+
- PLAT=x86_64
6264
- MB_PYTHON_VERSION=3.7
6365
- MB_PYTHON_OSX_VER=10.9
6466
- os: osx
6567
language: generic
6668
osx_image: xcode10.1
6769
env:
70+
- PLAT=x86_64
6871
- MB_PYTHON_VERSION=3.8
6972
- MB_PYTHON_OSX_VER=10.9
7073
- os: linux
@@ -73,36 +76,42 @@ matrix:
7376
- PLAT=aarch64
7477
- MB_ML_VER=2014
7578
- MB_PYTHON_VERSION=3.6
79+
- DEBUG_PRINT=1
7680
- os: linux
7781
arch: s390x
7882
env:
7983
- PLAT=s390x
8084
- MB_ML_VER=2014
8185
- MB_PYTHON_VERSION=3.6
86+
- DEBUG_PRINT=1
8287
- os: linux
8388
arch: ppc64le
8489
env:
8590
- PLAT=ppc64le
8691
- MB_ML_VER=2014
8792
- MB_PYTHON_VERSION=3.6
93+
- DEBUG_PRINT=1
8894
- os: linux
8995
arch: arm64
9096
env:
9197
- PLAT=aarch64
9298
- MB_ML_VER=2014
9399
- MB_PYTHON_VERSION=3.7
100+
- DEBUG_PRINT=1
94101
- os: linux
95102
arch: s390x
96103
env:
97104
- PLAT=s390x
98105
- MB_ML_VER=2014
99106
- MB_PYTHON_VERSION=3.7
107+
- DEBUG_PRINT=1
100108
- os: linux
101109
arch: ppc64le
102110
env:
103111
- PLAT=ppc64le
104112
- MB_ML_VER=2014
105113
- MB_PYTHON_VERSION=3.7
114+
- DEBUG_PRINT=1
106115

107116
before_install:
108117
- if [ "$TRAVIS_BRANCH" == "master" ]; then

config.sh

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ function build_wheel {
88
if [ -n "$IS_OSX" ]; then
99
install_gfortran
1010
fi
11+
echo gcc --version
12+
echo `gcc --version`
1113
build_libs $lib_plat
1214
# Fix version error for development wheels by using bdist_wheel
1315
build_bdist_wheel $@

0 commit comments

Comments
 (0)