-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
48 lines (48 loc) · 912 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
48
language: cpp
compiler:
- clang
- gcc
os:
- osx
- linux
env:
- CONFIG=Release
- CONFIG=Debug
matrix:
exclude:
- os: osx
compiler: gcc
cache:
directories:
$HOME/osvr
install:
- export PATH=$HOME/osvr/bin:$PATH
- pushd devtools
- ./travis-install-dependencies.sh "${HOME}/osvr"
- popd
script:
- git submodule update --init --recursive
- ./devtools/travis-build.sh "${HOME}/osvr"
sudo: false
addons:
apt:
sources:
- boost-latest
- george-edison55-precise-backports
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- libboost-thread1.55-dev
- libboost-system1.55-dev
- libboost-date-time1.55-dev
- libboost-chrono1.55-dev
- libboost-program-options1.55-dev
- libboost-filesystem1.55-dev
- libusb-1.0-0-dev
- cmake-data
- cmake
- gcc-5
- g++-5
- clang-3.7
- libudev0
- libudev-dev