]> The Tcpdump Group git mirrors - tcpdump/blob - .travis.yml
More UNALIGNED_MEM{CPY,CMP} on IP addresses.
[tcpdump] / .travis.yml
1 language: c
2
3 compiler:
4 - gcc
5 - clang
6
7 env:
8 - BUILD_LIBPCAP=true BUILD_IPV6=true
9 - BUILD_LIBPCAP=true BUILD_IPV6=false
10
11 before_script:
12 - sudo apt-get install libssl-dev libssl0.9.8 libssl1.0.0
13 - 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
14
15 script:
16 - if [ "$BUILD_IPV6" = "true" ]; then ./configure; else ./configure --disable-ipv6; fi
17 - make
18 - if [ "$BUILD_IPV6" = "true" ]; then make check; else true; fi