]> git.ipfire.org Git - thirdparty/pdns.git/blob - .travis.yml
Merge pull request #7056 from mind04/rootkey
[thirdparty/pdns.git] / .travis.yml
1 sudo: required
2 dist: trusty
3 language: cpp
4 compiler:
5 - gcc
6 - clang
7 env:
8 - PDNS_BUILD_PRODUCT=auth
9 - PDNS_BUILD_PRODUCT=recursor
10 - PDNS_BUILD_PRODUCT=dnsdist
11 - PDNS_BUILD_PRODUCT=ixfrdist
12
13 matrix:
14 include:
15 - env: PDNS_BUILD_PRODUCT=none
16
17 cache:
18 - pip
19
20 before_script:
21 - git describe --always --dirty=+
22 - sudo rm -f /etc/apt/sources.list.d/*.list
23
24 ### setup travis environment ###
25 - sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
26 - export POSIXLY_CORRECT=1
27 - export CFLAGS=-O0
28 - export CXXFLAGS=-O0
29 - export OPTFLAGS=-O0
30 - sudo apt-get -qq update
31 # you can remove this when updating dist to something newer than trusty
32 - pyenv global 2.7
33 # needed for virtualenv to use the pyenv python
34 - pip install virtualenv
35
36 script:
37 - ./build-scripts/travis.sh
38
39 notifications:
40 irc:
41 channels:
42 - secure: "RDw5WKYf/gS3JnfIdkK51U4K2Xg/WNMn1uB/5AZbHbcqZJ/ZnbILCu0eBC83blQr+UuaQG7/sUFhWbtwoivD2I/4wOQGWIysBEZ8bSoySPSc4u0YU45aPjN+Ohrrp9qw7Smts3tYHbrOqfLfZ39L8lJq06vuMoBp6eHVkSBT7AY="
43 template:
44 - "%{author} @ %{repository} / %{branch} - Build:#%{build_number} : %{message} - Changes: %{compare_url} - Build details: %{build_url}"
45 use_notice: true
46 skip_join: true