Skip to content
Snippets Groups Projects
.travis.yml 561 B
Newer Older
Marek Vavruša's avatar
Marek Vavruša committed
language: c
compiler:
    - gcc
Marek Vavruša's avatar
Marek Vavruša committed
env:
    global:
        - PKG_CONFIG_PATH="${HOME}/fakeroot/lib/pkgconfig"
        - LDFLAGS="-L${HOME}/fakeroot/lib"
        - PIP_DOWNLOAD_CACHE="${HOME}/.pip-cache"
        - CFLAGS="${CFLAGS} -DNDEBUG"
Marek Vavruša's avatar
Marek Vavruša committed
before_script:
Marek Vavruša's avatar
Marek Vavruša committed
    - ./scripts/bootstrap-depends.sh ${HOME}/fakeroot
    - pip install --user travis -r tests/pydnstest/requirements.txt
Marek Vavruša's avatar
Marek Vavruša committed
script:
Marek Vavruša's avatar
Marek Vavruša committed
    - autoreconf -i
    - ./configure --enable-integration-tests
Marek Vavruša's avatar
Marek Vavruša committed
    - make
    - make check
Marek Vavruša's avatar
Marek Vavruša committed
sudo: false
cache:
    directories:
    - ${HOME}/fakeroot
    - ${HOME}/.pip-cache