-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
82 lines (72 loc) · 2.03 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
languages:
- cpp
- python
sudo: false
git:
quiet: true
depth: false
submodules: true
jobs:
include:
- compiler: gcc
name: "Linux Python 3.7"
os: linux
python: 3.7
env: LINUX_PYTHON="cp37-cp37m"
dist: xenial
before_install:
- nohup docker pull quay.io/pypa/manylinux2010_x86_64 >/dev/null 2>&1 </dev/null &
script:
- bash -x -e .travis/python_release.sh
after_success: bash -x -e .travis/after_success.sh
- compiler: gcc
name: "Linux Python 3.6"
os: linux
python: 3.7
env: LINUX_PYTHON="cp36-cp36m"
dist: xenial
before_install:
- nohup docker pull quay.io/pypa/manylinux2010_x86_64 >/dev/null 2>&1 </dev/null &
script:
- bash -x -e .travis/python_release.sh
after_success: bash -x -e .travis/after_success.sh
- compiler: clang
name: "Mac Python 3.7"
os: osx
env: CC=gcc CXX=g++ MAC_PYTHON="37"
osx_image: xcode10.2
language: shell
before_install:
- curl -LO https://raw.githubusercontent.com/GiovanniBussi/macports-ci/master/macports-ci;
- source ./macports-ci install;
- python3 --version ; pip3 --version ; sw_vers
- pip3 install --user setuptools wheel scikit-build cmake ninja delocate
script:
- bash -x -e .travis/python_release.sh
after_success: bash -x -e .travis/after_success.sh
- compiler: clang
name: "Mac Python 3.6"
os: osx
env: CC=gcc CXX=g++ MAC_PYTHON="36"
osx_image: xcode10.2
language: shell
before_install:
- curl -LO https://raw.githubusercontent.com/GiovanniBussi/macports-ci/master/macports-ci;
- source ./macports-ci install;
- python3 --version ; pip3 --version ; sw_vers
script:
- bash -x -e .travis/python_release.sh
after_success: bash -x -e .travis/after_success.sh
services:
- docker
addons:
homebrew:
update: true
packages:
- cmake
- ninja
branches:
only:
- master
notifications:
email: false