forked from oystedal/filestreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (39 loc) · 879 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
# Reduce email spam
notifications:
email: false
sudo: required
# Use clang++
env:
- CXX="clang++"
# Handle submodules manually
git:
submodules: false
# Replace SSH URLs with a public URL
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
compiler: clang
language: c
script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug
- make
- ctest -V
dist: trusty
addons:
apt:
sources:
- sourceline: 'ppa:0k53d-karl-f830m/openssl'
- sourceline: 'ppa:openrct2/jansson'
- sourceline: 'ppa:ondrej/pkg-nlnetlabs'
- george-edison55-precise-backports # cmake 3.2.3 / doxygen 1.8.3
packages:
- cmake
- cmake-data
- libldns-dev
- libuv1-dev
- libjansson-dev
- libmnl-dev
- libsctp-dev
- openssl