File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,22 @@ matrix:
7
7
services :
8
8
- docker
9
9
env : DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
10
+ PLAT=manylinux1_x86_64
10
11
- sudo : required
11
12
services :
12
13
- docker
13
14
env : DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
14
15
PRE_CMD=linux32
16
+ PLAT=manylinux1_i686
15
17
- sudo : required
16
18
services :
17
19
- docker
18
20
env : DOCKER_IMAGE=quay.io/pypa/manylinux2010_x86_64
21
+ PLAT=manylinux2010_x86_64
19
22
20
23
install :
21
24
- docker pull $DOCKER_IMAGE
22
25
23
26
script :
24
- - docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis/build-wheels.sh
27
+ - docker run --rm -e PLAT=$PLAT - v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis/build-wheels.sh
25
28
- ls wheelhouse/
Original file line number Diff line number Diff line change 12
12
13
13
# Bundle external shared libraries into the wheels
14
14
for whl in wheelhouse/* .whl; do
15
- auditwheel repair " $whl " -w /io/wheelhouse/
15
+ auditwheel repair " $whl " --plat $PLAT - w /io/wheelhouse/
16
16
done
17
17
18
18
# Install packages and test
You can’t perform that action at this time.
0 commit comments