From fccbb8cb7f34fcf05d3b5d412d051e30ab38800b Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 3 Apr 2012 13:03:25 +0200 Subject: [PATCH] Integration with Travis CI --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..3c1f0d86 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: "python" +before_script: "sudo aptitude -y -q install libsnmp-dev libxml2-dev automake autoconf libtool" +script: "./autogen.sh && ./configure && make && make check" +env: + - LLDPD_CONFIG_ARGS="" + - LLDPD_CONFIG_ARGS="--disable-lldpmed" + - LLDPD_CONFIG_ARGS="--disable-dot1" + - LLDPD_CONFIG_ARGS="--disable-dot3" + - LLDPD_CONFIG_ARGS="--with-snmp" +branches: + only: + - master + - branch-0.5 -- 2.39.5