tcpdump/.travis.yml
Denis Ovsienko 77660a50c5 skip "make check" for Travis builds w/o IPv6
tcpdump can build w/o IPv6 but its output will differ in many test
cases. Make sure test cases are only used with IPv4+IPv6 builds.
2013-11-26 19:36:52 +04:00

19 lines
568 B
YAML

language: c
compiler:
- gcc
- clang
env:
- BUILD_LIBPCAP=true BUILD_IPV6=true
- BUILD_LIBPCAP=true BUILD_IPV6=false
before_script:
- sudo apt-get install libssl-dev libssl0.9.8 libssl1.0.0
- if [ $BUILD_LIBPCAP == "true" ]; then ( cd ../ && git clone git://github.com/the-tcpdump-group/libpcap.git && cd libpcap && ./configure && make ); else sudo apt-get install libpcap-dev; fi
script:
- if [ "$BUILD_IPV6" = "true" ]; then ./configure; else ./configure --disable-ipv6; fi
- make
- if [ "$BUILD_IPV6" = "true" ]; then make check; else true; fi