File tree 2 files changed +5
-10
lines changed
2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,6 @@ matrix:
28
28
env :
29
29
- DEPLOY_TARGET="manylinux1"
30
30
- DEPLOYABLE="true"
31
- - DOCKER_IMAGE="quay.io/pypa/manylinux1_x86_64"
32
- - services : docker
33
- sudo : required
34
- env :
35
- - DEPLOY_TARGET="manylinux1"
36
- - DEPLOYABLE="true"
37
- - DOCKER_IMAGE="quay.io/pypa/manylinux1_i686"
38
- - PRE_CMD=linux32
39
31
40
32
dist : trusty
41
33
@@ -85,7 +77,10 @@ install:
85
77
script :
86
78
- |
87
79
if [ "$DEPLOY_TARGET" = "manylinux1" ]; then
88
- docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/.travis/build-wheels.sh
80
+ #build for 64-bit
81
+ docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/.travis/build-wheels.sh
82
+ #build for 32-bit
83
+ docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/.travis/build-wheels.sh
89
84
else
90
85
nosetests
91
86
fi
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ rm -rf /opt/python/cp33-cp33m
15
15
16
16
# Make fastFM-core
17
17
cd /io/fastFM-core
18
- make
18
+ make clean && make
19
19
cd /
20
20
21
21
# Compile wheels
You can’t perform that action at this time.
0 commit comments