This repository has been archived by the owner on Jul 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
107 lines (102 loc) · 2.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
language: cpp
dist: trusty
sudo: false
matrix:
include:
- compiler: gcc-5
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.4-dev
- gcc-5
- g++-5
env: GCC=5 PYTHON=python3.4
- compiler: gcc-5
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.5-dev
- gcc-5
- g++-5
env: GCC=5 PYTHON=python3.5
- compiler: gcc-6
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.4-dev
- gcc-6
- g++-6
env: GCC=6 PYTHON=python3.4
- compiler: gcc-6
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.5-dev
- gcc-6
- g++-6
env: GCC=6 PYTHON=python3.5
- compiler: clang-3.9
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main"
key_url: "http://apt.llvm.org/llvm-snapshot.gpg.key"
packages:
# we install gcc in the clang builds to get an updated libstd++
- gcc-5
- g++-5
- python3.4-dev
- clang-3.9
env: CLANG=3.9 PYTHON=python3.4
- compiler: clang-3.9
os: linux
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main"
key_url: "http://apt.llvm.org/llvm-snapshot.gpg.key"
packages:
# we install gcc in the clang builds to get an updated libstd++
- gcc-5
- g++-5
- python3.5-dev
- clang-3.9
env: CLANG=3.9 PYTHON=python3.5
- compiler: clang
os: osx
osx_image: xcode8.1
env: PYTHON_VER=3.4.4 PYTHON=python3
- compiler: clang
os: osx
osx_image: xcode8.1
env: PYTHON_VER=3.5.2 PYTHON=python3
install:
- source etc/ci-install.sh
before_script:
- ${CXX} --version
- ${PYTHON} --version
script:
- make -j 8 test
notifications:
email: false