mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2025-01-25 09:06:24 +08:00
f4d295e94a
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.
14 lines
359 B
YAML
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
|