-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
31 lines (28 loc) · 898 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
language:
- cpp
compiler:
- g++
env:
global:
- secure: "F8jQkjtGtgzM0PDfdF9Y9bDx5QGl7sREKotKRzkYSzj8KQhmo4Z/d+wMYNXK8DKb+QMH9DHHP3rH7fxrvtbKtZv8WzoJnF60yP0NYdchou8tvfWgRq77erhGYNKLHzvMUCEoSPYbM1Ethl5ZkSYdcCKd12Km0ZoHhuhRw2Cy0VQ="
before_install:
- echo $TEST_VAR
- sudo apt-get install libboost-test-dev
- sudo apt-get install libboost-program-options-dev
- wget http://waf.googlecode.com/files/waf-1.7.11.tar.bz2
- tar xjvf waf-1.7.11.tar.bz2
- cd waf-1.7.11
- python waf-light configure
- python waf-light --tools=boost,waf_unit_test
- chmod 755 waf
- export PATH=$PWD:$PATH
- cd ..
- waf --version
- git clone https://github.com/nharraud/cpp-coveralls.git
- sudo pip install ./cpp-coveralls
before_script:
- waf configure
script:
- waf release test
after_success:
- coveralls --exclude src/test --exclude waf-1.7.11 --build-root "./build/test"