-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
43 lines (34 loc) · 1.01 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
language: cpp
compiler:
- gcc
before_install:
# support C++11
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
# latest Boost
- sudo add-apt-repository -y ppa:boost-latest/ppa
# latest 0MQ
- sudo add-apt-repository -y ppa:chris-lea/zeromq
# latest Yajl
- sudo add-apt-repository -y ppa:simon-marchi/myppa
# update everything now
- sudo apt-get update -qq
install:
# stuff needed by Babeltrace
- sudo apt-get install -qq libtool
- sudo apt-get install -qq autoconf
- sudo apt-get install -qq libglib2.0-dev
- sudo apt-get install -qq bison
- sudo apt-get install -qq flex
- sudo apt-get install -qq uuid-dev
- sudo apt-get install -qq libpopt-dev
# stuff needed by us
- sudo apt-get install -qq g++-4.8
- sudo apt-get install -qq pkg-config
- sudo apt-get install -qq libcppunit-dev
- sudo apt-get install -qq boost1.55
- sudo apt-get install -qq libzmq3-dev
- sudo apt-get install -qq libyajl-dev
script:
- export CXX=g++-4.8
- source ./setenv.sh
- scons