-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy path.travis.yml
66 lines (64 loc) · 1.29 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
language: cpp
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER ..
- make cirkit
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env: COMPILER=g++-7
- os: linux
dist: trusty
sudo: required
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
env: COMPILER=g++-8
- os: linux
dist: trusty
sudo: required
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-7
packages:
- clang-7
- g++-7
env: COMPILER=clang++-7
- os: osx
osx_image: xcode9.4
compiler: clang
before_install:
- brew update
- brew install llvm
env: COMPILER=/usr/local/opt/llvm/bin/clang++
- os: osx
osx_image: xcode10.2
compiler: gcc
before_install:
- brew unlink python@2
- brew upgrade gcc
env: COMPILER=/usr/local/opt/gcc/bin/g++-9
- os: osx
osx_image: xcode10.2
compiler: gcc
before_install:
- brew update
- brew install gcc@7
env: COMPILER=/usr/local/opt/gcc@7/bin/g++-7