From 655ec72e06b6e0fee5755753c8c23126f782552e Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 3 Apr 2012 13:39:24 +0200 Subject: [PATCH] travis: also enable Travis CI on 0.5 branch. --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c3b8fadd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: "python" +install: + - "sudo apt-get -y install automake autoconf libtool pkg-config" + - "sudo apt-get -y install libsnmp-dev libxml2-dev check" +script: "./autogen.sh && ./configure $LLDPD_CONFIG_ARGS && 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 --with-xml" +branches: + only: + - master + - branch-0.5 -- 2.39.5