[go: up one dir, main page]

Menu

[688d52]: / .travis.yml  Maximize  Restore  History

Download this file

41 lines (34 with data), 859 Bytes

 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
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=RelWithDebInfo
- BUILD_TYPE=Release
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ precise main universe"
- sudo apt-get update -qq
- sudo apt-get install -qq cmake g++ libgtkmm-3.0-dev libgtksourceview2.0-dev libboost1.48-dev libboost1.48-all-dev libopenmpi-dev libarchive-dev
before_script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- make
- sudo make install
- cd ..
script:
- cd build
- ctest -V
notifications:
recipients:
- vle-devel@lists.sourceforge.net
email:
on_success: change
on_failure: always
irc:
channels:
- "chat.freenode.net#vle"
template:
- "%{repository} (%{commit}) : %{message} %{foo} "
- "Build details: %{build_url}"