]> git.ipfire.org Git - thirdparty/lldpd.git/blobdiff - .travis.yml
daemon: ensure interval update is taken into account fast
[thirdparty/lldpd.git] / .travis.yml
index ef8b30754eea8ae9636d3076b45c84683db47dad..0b5d34e2f9a257a8b16350df2b57e6c728916a8f 100644 (file)
@@ -1,37 +1,42 @@
 language: c
+group: deprecated-2017Q3
 os: linux
+dist: trusty
 compiler: gcc
 sudo: require
 install:
-  - ./.travis/install.sh
+  - ./tests/ci/install.sh
 script:
-  - ./.travis/run.sh
+  - ./tests/ci/run.sh
 env:
-  global:
-    - secure: "1qAHFxnz0gIxMMl9DAVzoPvVSpOacWT2G6ItcaoaVe1r4OANzpoHBlbyHX2I/1KFe+BohzjS9kXA4NrlPaL81qfvu9E6qZ9yai/+0gHdzZttB2uvdyFXyDVye3CHHDlYMfRRQf6C+eYs5CKeedWq9Q3arO1GyAWiL9RcW1466sg="
-    - COVERITY_SCAN_BRANCH_PATTERN=coverity_scan
-    - COVERITY_SCAN_NOTIFICATION_EMAIL="bernat@luffy.cx"
-    - RUN_COVERITY=0
   matrix:
     - LLDPD_CONFIG_ARGS=""
     - LLDPD_CONFIG_ARGS="--with-embedded-libevent"
+    - LLDPD_CONFIG_ARGS="--disable-shared --enable-static"
     - LLDPD_CONFIG_ARGS="--disable-privsep --with-snmp"
-    - LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json --disable-lldpmed --disable-dot1 --disable-dot3 --disable-custom --enable-oldies"
+    - LLDPD_CONFIG_ARGS="--with-snmp --disable-lldpmed --disable-dot1 --disable-dot3 --disable-custom"
+    - LLDPD_CONFIG_ARGS="--enable-oldies"
+    - LLDPD_CONFIG_ARGS="--with-seccomp"
 matrix:
   include:
     - os: linux
       compiler: clang
-      env: LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json"
+      env: LLDPD_CONFIG_ARGS="--with-snmp --with-xml"
     - os: osx
       compiler: clang
-      env: LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json"
-    - os: linux
-      compiler: gcc
-      env: 
-        - RUN_INTEGRATION=1
-        - LLDPD_CONFIG_ARGS="--localstatedir=/var --sysconfdir=/etc --prefix=/usr"
-    - os: linux
-      compiler: gcc
+      env: LLDPD_CONFIG_ARGS="--with-snmp --with-xml"
+    - os: osx
+      compiler: clang
+      if: tag =~ ^[0-9]
       env:
-        - RUN_COVERITY=1
-        - LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json"
+        - LLDPD_UPLOAD=1
+        - LLDPD_CONFIG_ARGS="--prefix=/usr/local --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent --without-snmp --without-xml"
+deploy:
+  - provider: s3
+    skip_cleanup: true
+    local_dir: upload
+    bucket: lldpd-releases
+    acl: public_read
+    on:
+      all_branches: true
+      condition: "$LLDPD_UPLOAD = 1"