-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml_bak
More file actions
44 lines (37 loc) · 1.06 KB
/
Copy path.travis.yml_bak
File metadata and controls
44 lines (37 loc) · 1.06 KB
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
language: cpp
sudo: false
os: linux
dist: trusty
branches:
only:
- master
matrix:
include:
- env: COMPILER=g++-6 BUILD=Debug STANDARD=14
compiler: clang
addons:
apt:
update: true
sources:
# - sourceline: 'ppa:mhier/libboost-latest'
- souceline: 'ppa:litenstein/boost-1-61-xenial'
- ubuntu-toolchain-r-rest
packages:
- boost1.63
- boost-defaults
# - g++-6
- env: COMPILER=g++-6 BUILD=Release STANDARD=14
compiler: clang
addons:
apt:
update: true
sources:
# - sourceline: 'ppa:mhier/libboost-latest'
- souceline: 'ppa:litenstein/boost-1-61-xenial'
- ubuntu-toolchain-r-rest
packages:
- boost1.63
- boost-defaults
script:
- cmake .
- cmake --build . -- -j2