-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
59 lines (58 loc) · 1.1 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
script:
- make devbuild
matrix:
include:
- os: linux
language: python
dist: xenial
sudo: required
compiler: gcc
python: 3.7
before_install:
- pip install virtualenv
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
env: CC=gcc-7
- os: linux
language: python
dist: xenial
sudo: required
compiler: gcc
python: 3.7
before_install:
- pip install virtualenv
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
env: CC=gcc-8
- os: linux
language: python
dist: xenial
sudo: required
compiler: clang
python: 3.7
before_install:
- pip install virtualenv
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-6.0
packages:
- clang-6.0
- g++-7
- gcc-7
env: CC=clang-6.0
- os: osx
osx_image: xcode10.2
before_install:
- python3 -m pip install virtualenv