-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
38 lines (38 loc) · 1.18 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
language: c # work around travis issue on OSX
# https://github.com/travis-ci/travis-ci/issues/2312
compiler:
- gcc
install: source continuous_integration/install.sh
script: bash continuous_integration/test.sh
matrix:
include:
# linux entries:
- env: SYSTEM_PYTHON="1"
os: linux
sudo: true
dist: xenial
compiler: gcc
- env: PYTHON_VERSION="2.7" NUMPY_VERSION="1.11" FLANN_VERSION="1.8.4"
os: linux
compiler: gcc
- env: PYTHON_VERSION="2.7" NUMPY_VERSION="1.11" FLANN_VERSION="1.9.1"
os: linux
compiler: gcc
- env: PYTHON_VERSION="3.6" NUMPY_VERSION="1.13" FLANN_VERSION="1.9.1"
os: linux
compiler: gcc
# OSX entries: the same, basically
- env: SYSTEM_PYTHON="1"
os: osx
compiler: gcc
- env: PYTHON_VERSION="2.7" NUMPY_VERSION="1.11" FLANN_VERSION="1.8.4"
os: osx
compiler: gcc
- env: PYTHON_VERSION="2.7" NUMPY_VERSION="1.13" FLANN_VERSION="1.9.1"
os: osx
compiler: gcc
- env: PYTHON_VERSION="3.6" NUMPY_VERSION="1.13" FLANN_VERSION="1.9.1"
os: osx
compiler: gcc
exclude:
- compiler: gcc # https://github.com/travis-ci/travis-ci/issues/4681