forked from ap--/python-seabreeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (62 loc) · 1.75 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: python
matrix:
include:
- name: Python 2.7 3.[567] manylinux1 x86_64 via docker
sudo: required
services:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64 PLAT=manylinux1_x86_64
before_install:
- docker pull $DOCKER_IMAGE
install:
- docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/ci/build_manylinux_wheels.sh
- name: Python 2.7 3.[567] manylinux1 i686 via docker
sudo: required
services:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686 PRE_CMD=linux32 PLAT=manylinux1_i686
before_install:
- docker pull $DOCKER_IMAGE
install:
- docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/ci/build_manylinux_wheels.sh
- name: Python 2.7 on macOS
os: osx
osx_image: xcode9.4
language: shell
env: PYTHON_VERSION=2.7
install:
- source ci/build_osx_wheels.sh
- name: Python 3.5 on macOS
os: osx
osx_image: xcode9.4
language: shell
env: PYTHON_VERSION=3.5
install:
- source ci/build_osx_wheels.sh
- name: Python 3.6 on macOS
os: osx
osx_image: xcode9.4
language: shell
env: PYTHON_VERSION=3.6
install:
- source ci/build_osx_wheels.sh
- name: Python 3.7 on macOS
os: osx
osx_image: xcode9.4
language: shell
env: PYTHON_VERSION=3.7
install:
- source ci/build_osx_wheels.sh
script:
- ls wheelhouse/seabreeze*.whl
- echo "done."
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: H+xEsgW3rABG9meFzNSYaopnB5pvF9BXMBVH8uxAu/oWDcuJn43q9aoCdz0uD+URi2iwtYs+7KjNbKK/hMMKpJd1CXc73Qzyvvp8CRSDJGwZkg9G7NSBj18LLeTPBCHMY7C0KyPmsRkGQwDULmkQdQkmxJlhoWNfCjNHb8jamZA=
file_glob: true
file: wheelhouse/seabreeze*.whl
on:
all_branches: true
tags: true