-
-
Notifications
You must be signed in to change notification settings - Fork 266
/
.travis.yml
50 lines (45 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
language: c
cache: ccache
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
env: BUILDDIR=. TOOL="./configure --warn"
- os: linux
compiler: gcc
env: BUILDDIR=. TOOL="./configure --warn --zlib-compat --native"
- os: linux
compiler: gcc
env: BUILDDIR=../build TOOL="../zlib-ng/configure --warn --zlib-compat"
- os: linux
compiler: gcc
env: BUILDDIR=. TOOL="./configure --warn --zlib-compat --without-optimizations --without-new-strategies"
- os: linux
compiler: gcc
env: BUILDDIR=. TOOL="cmake ."
- os: linux
compiler: gcc
env: BUILDDIR=../build TOOL="cmake ../zlib-ng"
- os: linux
compiler: clang
env: BUILDDIR=. TOOL="./configure --warn --zlib-compat"
- os: linux
compiler: clang
env: BUILDDIR=../build TOOL="cmake ../zlib-ng"
- os: osx
compiler: gcc
env: BUILDDIR=. TOOL="./configure --warn --zlib-compat"
- os: osx
compiler: gcc
env: BUILDDIR=../build TOOL="../zlib-ng/configure --warn --zlib-compat"
- os: osx
compiler: gcc
env: BUILDDIR=. TOOL="cmake ."
- os: osx
compiler: clang
env: BUILDDIR=. TOOL="./configure --warn --zlib-compat"
- os: osx
compiler: clang
env: BUILDDIR=../build TOOL="cmake ../zlib-ng"
script: mkdir -p $BUILDDIR && cd $BUILDDIR && $TOOL && make -j2 && make test