summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4eac7a0103d4522e7e5ef752d2f331f669da2296 (plain)
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
language: c
os:
    - osx
addons:
    homebrew:
        packages:
            - cmocka
            - luajit
            - libuv
compiler:
    - clang
notifications:
    email:
        on_success: never
        on_failure: never
matrix:
    fast_finish: true
env:
    global:
        - KNOT_DNS_VERSION=v2.7.2
        - DYLD_LIBRARY_PATH="${HOME}/.local/lib"
        - MALLOC_CHECK_=3
        - MALLOC_PERTURB_=223
before_script:
    - git clone -b ${KNOT_DNS_VERSION} https://gitlab.labs.nic.cz/knot/knot-dns.git
    - cd knot-dns
    - autoreconf -fi
    - ./configure --disable-static --disable-fastparser --disable-documentation --disable-daemon --disable-utilities --with-lmdb=no
    - make -j2 install
    - cd ..
script:
    - CFLAGS="-O2 -g -fno-omit-frame-pointer -DDEBUG" make -j2 install check V=1 PREFIX=${HOME}/.local DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}
    - ./daemon/kresd -h
    - ./daemon/kresd -V
    - echo "quit()" | ./daemon/kresd -a 127.0.0.1@53535 .
sudo: false