forked from librsync/librsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (41 loc) · 874 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
49
50
51
52
53
54
55
# "It took the night to believe"
language: c
before_script:
- cmake --help
- cmake $CMAKE_OPTIONS $CMAKE_GENERATOR .
sudo: required
env:
- CTEST_OUTPUT_ON_FAILURE=1
addons:
apt:
packages:
- cmake
- libpopt-dev
- doxygen
- ninja-build
script:
- make check
matrix:
include:
- compiler: clang
os: osx
before_install:
- brew update
- brew install popt
script:
- make check doc
- dist: precise
sudo: false
- compiler: clang
dist: trusty
- compiler: clang
env: CMAKE_GENERATOR="-G Ninja"
dist: trusty
script:
- ninja check doc
- dist: precise
sudo: false
env: CMAKE_OPTIONS="-D BUILD_RDIFF=OFF"
# Docs are tested on Trusty with Ninja, and on OSX (which might have a more
# recent Doxygen.)
# vim: shiftwidth=2 expandtab