tcpdump/.travis.yml
Denis Ovsienko f4d295e94a disable Travis CI job using libpcap-dev
The recent PPPoE session ID test case in commit 1ed68a5 depends on the
latest libpcap version to pass. The tcpdump build will fail until the
libpcap feature makes it into the next libpcap release and eventually
into the build server's libpcap-dev package, which won't happen soon.

For the time being leave only the job using git master of libpcap to
build tcpdump, such that Travis status on the pull requests is accurate.
2013-05-29 13:01:55 +04:00

14 lines
359 B
YAML

language: c
env:
- BUILD_LIBPCAP=true
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:
- ./configure
- make
- make check