]> git.ipfire.org Git - thirdparty/pdns.git/blob - .travis.yml
Merge pull request #9500 from Habbie/auth-4.1.x-2020-05
[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 before_script:
11 - git describe --always --dirty=+
12 - sudo rm -f /etc/apt/sources.list.d/*.list
13
14 ### setup travis environment ###
15 - sudo sysctl net.ipv6.conf.lo.disable_ipv6=0
16 - export POSIXLY_CORRECT=1
17 - export CFLAGS=-O0
18 - export CXXFLAGS=-O0
19 - export OPTFLAGS=-O0
20 - sudo apt-get -qq update
21
22 script:
23 - ./build-scripts/travis.sh
24
25 notifications:
26 irc:
27 channels:
28 - secure: "RDw5WKYf/gS3JnfIdkK51U4K2Xg/WNMn1uB/5AZbHbcqZJ/ZnbILCu0eBC83blQr+UuaQG7/sUFhWbtwoivD2I/4wOQGWIysBEZ8bSoySPSc4u0YU45aPjN+Ohrrp9qw7Smts3tYHbrOqfLfZ39L8lJq06vuMoBp6eHVkSBT7AY="
29 template:
30 - "%{author} @ %{repository} / %{branch} - Build:#%{build_number} : %{message} - Changes: %{compare_url} - Build details: %{build_url}"
31 use_notice: true
32 skip_join: true