-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.travis.yml
48 lines (40 loc) · 852 Bytes
/
.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
sudo: false
dist: trusty
language: cpp
compiler:
- clang
git:
depth: 1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:kzemek/boost'
packages:
- g++-6
- libboost1.58-dev
- libboost-filesystem1.58-dev
- libboost-iostreams1.58-dev
- libboost-program-options1.58-dev
- libboost-regex1.58-dev
- libboost-system1.58-dev
- libboost-thread1.58-dev
- libssl-dev
- libmysqlclient-dev
- libreadline6-dev
- zlib1g-dev
- libbz2-dev
services:
- mysql
before_install:
- git config user.email "[email protected]" && git config user.name "Travis CI"
- git tag -a -m "Travis build" init
install:
- mkdir bin
- cd bin
- cmake ../ -DTOOLS=0 -DCMAKE_BUILD_TYPE=Release
- cd ..
script:
- $CXX --version
- cd bin
- make -j4