]> git.ipfire.org Git - thirdparty/pdns.git/blob - .travis.yml
Encrypt the IRC channel name so notifications are not sent for forks
[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
10 matrix:
11 exclude:
12 - compiler: clang
13 env: PDNS_BUILD_PRODUCT=docs
14
15 before_script:
16 - git describe --always --dirty=+
17
18 ### setup travis environment ###
19 - sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
20 - export POSIXLY_CORRECT=1
21 - export CFLAGS=-O0
22 - export CXXFLAGS=-O0
23 - export OPTFLAGS=-O0
24 - sudo apt-get -qq update
25
26 script:
27 - ./build-scripts/travis.sh
28
29 notifications:
30 irc:
31 channels:
32 - secure: "RDw5WKYf/gS3JnfIdkK51U4K2Xg/WNMn1uB/5AZbHbcqZJ/ZnbILCu0eBC83blQr+UuaQG7/sUFhWbtwoivD2I/4wOQGWIysBEZ8bSoySPSc4u0YU45aPjN+Ohrrp9qw7Smts3tYHbrOqfLfZ39L8lJq06vuMoBp6eHVkSBT7AY="
33 template:
34 - "%{author} @ %{repository} / %{branch} - Build:#%{build_number} : %{message} - Changes: %{compare_url} - Build details: %{build_url}"
35 use_notice: true
36 skip_join: true