forked from VMML/vmmlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 1.1 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
# generated by Buildyard, do not edit.
notifications:
email:
on_success: never
language: cpp
script:
- mkdir Debug
- cd Debug
- cmake .. -DCI_BUILD_COMMIT=$TRAVIS_COMMIT -DCMAKE_BUILD_TYPE=Debug -DTRAVIS=1
- env TRAVIS=1 make -j2 tests ARGS=-V
- mkdir ../Release
- git status
- git --no-pager diff
- cd ../Release
- cmake .. -DCI_BUILD_COMMIT=$TRAVIS_COMMIT -DCMAKE_BUILD_TYPE=Release -DTRAVIS=1
- env TRAVIS=1 make -j2 tests ARGS=-V
- git status
- git --no-pager diff
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq autoconf || /bin/true
- sudo apt-get install -qq automake || /bin/true
- sudo apt-get install -qq cmake || /bin/true
- sudo apt-get install -qq cppcheck || /bin/true
- sudo apt-get install -qq doxygen || /bin/true
- sudo apt-get install -qq git || /bin/true
- sudo apt-get install -qq git-review || /bin/true
- sudo apt-get install -qq git-svn || /bin/true
- sudo apt-get install -qq lcov || /bin/true
- sudo apt-get install -qq ninja-build || /bin/true
- sudo apt-get install -qq pkg-config || /bin/true
- sudo apt-get install -qq subversion || /bin/true