File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ notifications :
2
+ email : false
3
+
4
+ matrix :
5
+ include :
6
+ - sudo : required
7
+ services :
8
+ - docker
9
+ env : DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
10
+ - sudo : required
11
+ services :
12
+ - docker
13
+ env : DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
14
+ PRE_CMD=linux32
15
+
16
+ install :
17
+ - docker pull $DOCKER_IMAGE
18
+
19
+ script :
20
+ - docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/.travis/build-linux-wheels.sh
21
+ - ls wheelhouse/
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -e -x
3
+
4
+ # Compile wheels
5
+ for PYBIN in /opt/python/* /bin; do
6
+ if [ $( echo " ${PYBIN} " | grep -o ' [[:digit:]][[:digit:]]' | head -n 1) -ge 33 ]; then
7
+ # typed_ast only builds on Python 3.3 and newer
8
+ " ${PYBIN} /pip" wheel /io/ -w wheelhouse/
9
+ fi
10
+ done
You can’t perform that action at this time.
0 commit comments