]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
travis: use apt-get instead of aptitude
authorVincent Bernat <bernat@luffy.cx>
Tue, 3 Apr 2012 11:21:00 +0000 (13:21 +0200)
committerVincent Bernat <bernat@luffy.cx>
Tue, 3 Apr 2012 11:22:49 +0000 (13:22 +0200)
aptitude will try to remove unused packages. We don't need this. Also,
enable XML output.

.travis.yml

index 08f95b2ab3ee8bc77b62562ea223fd4e0f834074..c3b8fadd98048d2580a5e2d538cc67911496e536 100644 (file)
@@ -1,14 +1,14 @@
 language: "python"
 install:
-  - "sudo aptitude -y -q install automake autoconf libtool pkg-config"
-  - "sudo aptitude -y -q install libsnmp-dev libxml2-dev check"
+  - "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"
+  - LLDPD_CONFIG_ARGS="--with-snmp --with-xml"
 branches:
   only:
     - master