-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path.travis.yml
More file actions
63 lines (58 loc) · 1.34 KB
/
Copy path.travis.yml
File metadata and controls
63 lines (58 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
sudo: required
dist: xenial
language: cpp
matrix:
include:
# Linux g++-7
- os: linux
compiler: g++
addons:
apt:
update: true
sources:
- sourceline: 'ppa:mhier/libboost-latest'
- ubuntu-toolchain-r-test
packages:
- g++-7
- boost1.67
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
# Linux g++-8
- os: linux
compiler: g++
addons:
apt:
update: true
sources:
- sourceline: 'ppa:mhier/libboost-latest'
- ubuntu-toolchain-r-test
packages:
- g++-8
- boost1.67
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
# Linux g++-9
- os: linux
compiler: g++
addons:
apt:
update: true
sources:
- sourceline: 'ppa:mhier/libboost-latest'
- ubuntu-toolchain-r-test
packages:
- g++-9
- boost1.67
env:
- MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
# install cmake 3.10
before_install:
- eval "${MATRIX_EVAL}"
- wget -O cmake.sh https://cmake.org/files/v3.10/cmake-3.10.0-rc1-Linux-x86_64.sh
- sudo sh cmake.sh --skip-license --exclude-subdir --prefix=/usr/local
# Build steps
script:
- mkdir build
- cd build
- cmake ../
- make