From: Marc Abramowitz Date: Thu, 4 Oct 2012 22:30:56 +0000 (-0700) Subject: Add .travis.yml for Travis CI (http://travis-ci.org/) X-Git-Tag: tcpdump-4.4.0~23^2 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/0c3854e58ed4a3e9d71b77ecfb24d52daeb53be7 Add .travis.yml for Travis CI (http://travis-ci.org/) --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..28e4b8f1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: c + +before_script: + - sudo apt-get install libpcap-dev libssl-dev libssl0.9.8 libssl1.0.0 + # - find /lib /usr/lib -name 'libcrypto.*' + # - sudo ln -s i386-linux-gnu/libcrypto.so.0.9.8 /usr/lib/libcrypto.so + +script: + - curl -sk http://patch-tracker.debian.org/patch/series/dl/tcpdump/4.3.0-1/40_openssl.diff | patch -p1 # Patch OpenSSL detection to be multiarch-aware + - autoconf + - ./configure # --with-crypto=/usr --with-libdir=/usr/lib/i386-linux-gnu + - make + - make check