forked from wisk/medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
47 lines (39 loc) · 802 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
language: cpp
sudo: false
cache:
- ccache
- apt
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- gcc-4.9
- g++-4.9
- ccache
- libboost1.55-all-dev
compiler:
- gcc
before_install:
- git submodule update --init --recursive
- export CC="ccache gcc-4.9"
- export CXX="ccache g++-4.9"
- cd .travis
- wget -O cmake.tar.gz http://www.cmake.org/files/v3.2/cmake-3.2.1-Linux-x86_64.tar.gz
- tar xvzf cmake.tar.gz
- ls -la
- export PATH=$(pwd)/cmake-3.2.1-Linux-x86_64/bin:$PATH
- cd ..
before_script:
- mkdir build_release
- cd build_release
- cmake .. -DCMAKE_BUILD_TYPE=Release
- cd ..
script:
- cd build_release
- make all test
- ccache -s
- cd ..
notifications:
irc: "chat.freenode.net#medusa_disasm"