File tree 3 files changed +9
-22
lines changed
3 files changed +9
-22
lines changed Original file line number Diff line number Diff line change 11
11
matrix :
12
12
include :
13
13
- python : 2.7
14
- env :
15
- - UPLOAD_SDIST=1
16
- - python : 3.4
17
- - python : 3.5.1
18
- - python : 3.5.2
19
- - python : 3.5
20
- sudo : required
21
14
services :
22
- - docker
15
+ - docker
23
16
env :
24
- - DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64 BUILD_LINUX_WHEEL=1
17
+ - BUILD_LINUX_WHEEL=1 UPLOAD_SDIST=1
18
+ - python : 3.4
25
19
- python : 3.5
26
- sudo : required
27
- services :
28
- - docker
29
- env :
30
- - DOCKER_IMAGE=quay.io/pypa/manylinux1_i686 BUILD_LINUX_WHEEL=1 PRE_CMD=linux32
20
+ - python : 3.6
31
21
- os : osx
32
22
language : generic
33
23
osx_image : xcode6.4 # 6.4 is OS X 10.10.x
@@ -67,9 +57,6 @@ install:
67
57
script :
68
58
- bash ./travis/script.sh
69
59
70
- after_success :
71
- - if [[ -n "TRAVIS_TAG" ]]; then bash travis/upload-artifact.sh; fi
72
-
73
60
notifications :
74
61
irc :
75
62
channels : irc.freenode.org#baroque-dev
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
16
16
17
17
python -m virtualenv ~ /.venv
18
18
source ~ /.venv/bin/activate
19
- else
20
- if [[ -n " TRAVIS_TAG" && " $BUILD_LINUX_WHEEL " == " 1" ]]; then
21
- docker pull $DOCKER_IMAGE ;
22
- fi
23
19
fi
24
20
25
21
pip install .
Original file line number Diff line number Diff line change @@ -10,5 +10,9 @@ py.test vmprof/ -vrs
10
10
py.test jitlog/ -vrs
11
11
12
12
if [[ -n " TRAVIS_TAG" && " $BUILD_LINUX_WHEEL " == " 1" ]]; then
13
- docker run --rm -v ` pwd` :/io:Z $DOCKER_IMAGE $PRE_CMD bash /io/travis/build-wheels.sh;
13
+ docker pull quay.io/pypa/manylinux1_x86_64
14
+ docker pull quay.io/pypa/manylinux1_i686
15
+ docker run --rm -v ` pwd` :/io:Z quay.io/pypa/manylinux1_x86_64 bash /io/travis/build-wheels.sh;
16
+ docker run --rm -v ` pwd` :/io:Z quay.io/pypa/manylinux1_i686 linux32 bash /io/travis/build-wheels.sh;
17
+ bash travis/upload-artifact.sh
14
18
fi
You can’t perform that action at this time.
0 commit comments