2015-04-24 09:08:46 +02:00
|
|
|
language: c
|
|
|
|
|
os:
|
|
|
|
|
- linux
|
|
|
|
|
before_install:
|
2015-04-24 10:38:27 +02:00
|
|
|
- sudo apt-get update -qq
|
|
|
|
|
- sudo apt-get install dnsutils
|
2015-04-24 09:08:46 +02:00
|
|
|
compiler:
|
|
|
|
|
- clang
|
|
|
|
|
- gcc
|
|
|
|
|
script:
|
2015-04-24 11:59:48 +02:00
|
|
|
- make
|
2015-04-24 09:57:27 +02:00
|
|
|
- sudo make install
|
2015-04-27 19:55:06 +02:00
|
|
|
- sudo udpxd -l 127.0.0.1:53 -t 8.8.8.8:53 &
|
2015-04-24 09:57:27 +02:00
|
|
|
- dig +nocmd +noall +answer google.de a @127.0.0.1
|
2015-04-26 13:27:24 +02:00
|
|
|
- sudo killall udpxd
|
2016-09-22 23:11:02 +02:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# ipv6 not supported anymore since Travis-ci moved to
|
|
|
|
|
# GCE: https://blog.travis-ci.com/2015-11-27-moving-to-a-more-elastic-future
|
|
|
|
|
# whatever this might have to do with "future".. However, Appveyor still
|
|
|
|
|
# supports it, so I suspect, disabling it here is probably ok.
|
|
|
|
|
#
|
|
|
|
|
# - dig +nocmd +noall +answer google.de a @::1
|
|
|
|
|
# - sudo udpxd -l [::1]:53 -t [2001:4860:4860::8888]:53 &
|