Skip to content

Commit 714ca82

Browse files
committed
Revert "Split 64bit and 32bit build to prevent with different architecture .a files"
This reverts commit e8cff53.
1 parent e8cff53 commit 714ca82

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.travis.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,6 @@ matrix:
2828
env:
2929
- DEPLOY_TARGET="manylinux1"
3030
- 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
3931

4032
dist: trusty
4133

@@ -85,7 +77,10 @@ install:
8577
script:
8678
- |
8779
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
8984
else
9085
nosetests
9186
fi

.travis/build-wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rm -rf /opt/python/cp33-cp33m
1515

1616
#Make fastFM-core
1717
cd /io/fastFM-core
18-
make
18+
make clean && make
1919
cd /
2020

2121
#Compile wheels

0 commit comments

Comments
 (0)