forked from librsync/librsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (39 loc) · 773 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
# "It took the night to believe"
language: c
before_script:
- cmake --help
- cmake $CMAKE_OPTIONS $CMAKE_GENERATOR .
env:
- CTEST_OUTPUT_ON_FAILURE=1
addons:
apt:
packages:
- cmake
- libpopt-dev
- doxygen
- ninja-build
homebrew:
packages:
- popt
update: true
script:
- make check
matrix:
include:
- os: osx
compiler: clang
- os: linux
compiler: gcc
- os: linux
compiler: clang
- os: linux
compiler: clang
env: CMAKE_GENERATOR="-G Ninja"
script: ninja check doc
- os: linux
compiler: gcc
env: CMAKE_OPTIONS="-D BUILD_SHARED_LIBS=OFF"
- os: linux
compiler: gcc
env: CMAKE_OPTIONS="-D BUILD_RDIFF=OFF"
# vim: shiftwidth=2 expandtab