.travis.yml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. sudo: required
  2. dist: trusty
  3. language: c
  4. before_install:
  5. # Trusty related fixed
  6. # multiverse is no on trusty activated (https://github.com/travis-ci/travis-ci/issues/4979)
  7. - sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse"
  8. # /etc/hosts has IPv6 hosts (https://github.com/travis-ci/travis-ci/issues/4978)
  9. - sudo [ $(ip addr show | grep "inet6 ::1" | wc -l) -lt "1" ] && sudo sed -i '/^::1/d' /etc/hosts
  10. # Trusty has running ntpd on localhost, but we don't like that for our tests
  11. - sudo killall -9 ntpd
  12. # Trusty has no swap, lets create some
  13. - sudo fallocate -l 20M /swapfile; sudo chmod 600 /swapfile; sudo mkswap /swapfile; sudo swapon /swapfile
  14. - sudo add-apt-repository -y ppa:waja/trusty-backports
  15. - sudo apt-get update -qq
  16. - sudo apt-get purge -qq gawk
  17. # http://docs.travis-ci.com/user/trusty-ci-environment/ indicates, no MySQL on Trusty (yet)
  18. # # ensure we have a test database in place for tests
  19. # - mysql -e "create database IF NOT EXISTS test;" -uroot
  20. install:
  21. - sudo apt-get install -qq --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev libmysqlclient-dev libfreeradius-client-dev libkrb5-dev libnet-snmp-perl procps
  22. - sudo apt-get install -qq --no-install-recommends libdbi0-dev libdbd-sqlite3 libssl-dev dnsutils snmp-mibs-downloader libsnmp-perl snmpd
  23. - sudo apt-get install -qq --no-install-recommends fping snmp netcat smbclient fping pure-ftpd apache2 postfix libhttp-daemon-ssl-perl
  24. - sudo apt-get install -qq --no-install-recommends libdbd-sybase-perl libnet-dns-perl
  25. - sudo apt-get install -qq --no-install-recommends slapd ldap-utils
  26. - sudo apt-get install -qq --no-install-recommends autoconf automake
  27. - sudo apt-get install -qq --no-install-recommends faketime
  28. # Trusty related dependencies (not yet provided)
  29. - sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server
  30. before_script:
  31. # ensure we have a test database in place for tests
  32. - mysql -e "create database IF NOT EXISTS test;" -uroot
  33. # Detect LDAP configuration (seems volatile on trusty env)
  34. - sed -e 's/cn=admin,dc=nodomain/'$(sudo /usr/sbin/slapcat|grep ^dn:|grep cn=|awk '{print $2}')'/' -i plugins/t/NPTest.cache.travis
  35. - tools/setup
  36. - ./configure --enable-libtap
  37. - make
  38. - export NPTEST_CACHE="$(pwd)/plugins/t/NPTest.cache.travis"
  39. - ssh-keygen -t dsa -N "" -f ~/.ssh/id_dsa
  40. - cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
  41. - ssh-keyscan localhost >> ~/.ssh/known_hosts
  42. - touch ~/.ssh/config
  43. - sudo rm -f /usr/share/mibs/ietf/SNMPv2-PDU /usr/share/mibs/ietf/IPSEC-SPD-MIB /usr/share/mibs/ietf/IPATM-IPMC-MIB /usr/share/mibs/iana/IANA-IPPM-METRICS-REGISTRY-MIB
  44. - sudo mkdir -p /var/lib/snmp/mib_indexes
  45. script:
  46. - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make test; fi
  47. notifications:
  48. irc:
  49. channels:
  50. - "chat.freenode.net#Monitoring-Plugins"
  51. on_success: change
  52. on_failure: always
  53. skip_join: true
  54. email:
  55. - team@monitoring-plugins.org
  56. env:
  57. global:
  58. # This is the encrypted COVERITY_SCAN_TOKEN, created via the "travis
  59. # encrypt" command using the project repository's public key.
  60. - secure: "ggJ9c/VfKcwtrwz/My+ne4My7D8g3qi3vz5Hh+yLiri0+oIXCy313ZD6ssIEY/5beQZEOnuHhBgBJd/Y3clSQNc2M9fRNc+wxOkIO992lgnY0MZJN3y9MLfpqUbTClhU9Fst0qXQqGpI6UI8yz1tj7yKi7DPrycJLRrjMpyTfyo="
  61. addons:
  62. coverity_scan:
  63. project:
  64. name: "monitoring-plugins/monitoring-plugins"
  65. description: "Monitoring Plugins"
  66. notification_email: team@monitoring-plugins.org
  67. build_command_prepend: tools/setup && ./configure
  68. build_command: make
  69. branch_pattern: coverity.*