summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml88
1 files changed, 0 insertions, 88 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 78ebc30..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,88 +0,0 @@
1sudo: required
2dist: trusty
3language: c
4
5env:
6 global:
7 # This is the encrypted COVERITY_SCAN_TOKEN, created via the "travis
8 # encrypt" command using the project repository's public key.
9 - secure: "ggJ9c/VfKcwtrwz/My+ne4My7D8g3qi3vz5Hh+yLiri0+oIXCy313ZD6ssIEY/5beQZEOnuHhBgBJd/Y3clSQNc2M9fRNc+wxOkIO992lgnY0MZJN3y9MLfpqUbTClhU9Fst0qXQqGpI6UI8yz1tj7yKi7DPrycJLRrjMpyTfyo="
10
11matrix:
12 include:
13 - compiler: "gcc"
14 os: linux
15 env:
16 - PLATFORM=linux BITS=64 HOST=x86_64
17 addons:
18 coverity_scan:
19 project:
20 name: "monitoring-plugins/monitoring-plugins"
21 description: "Monitoring Plugins"
22 notification_email: team@monitoring-plugins.org
23 build_command_prepend: tools/setup && ./configure
24 build_command: make
25 branch_pattern: coverity.*
26 - compiler: "clang"
27 os: linux
28 env:
29 - PLATFORM=linux BITS=64 HOST=x86_64
30
31before_install:
32 # Trusty related fixed
33 # multiverse is no on trusty activated (https://github.com/travis-ci/travis-ci/issues/4979)
34 - 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"
35 # /etc/hosts has IPv6 hosts (https://github.com/travis-ci/travis-ci/issues/4978)
36 - sudo [ $(ip addr show | grep "inet6 ::1" | wc -l) -lt "1" ] && sudo sed -i '/^::1/d' /etc/hosts
37 # Trusty has running ntpd on localhost, but we don't like that for our tests
38 - sudo killall -9 ntpd
39 # Trusty has no swap, lets create some
40 - sudo fallocate -l 20M /swapfile; sudo chmod 600 /swapfile; sudo mkswap /swapfile; sudo swapon /swapfile
41 - sudo add-apt-repository -y ppa:waja/trusty-backports
42 - sudo apt-get update -qq
43 - sudo apt-get purge -qq gawk
44 # http://docs.travis-ci.com/user/trusty-ci-environment/ indicates, no MySQL on Trusty (yet)
45 # # ensure we have a test database in place for tests
46 # - mysql -e "create database IF NOT EXISTS test;" -uroot
47
48install:
49 - sudo apt-get install -qq --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev libmysqlclient-dev libradcli-dev libkrb5-dev libnet-snmp-perl procps
50 - sudo apt-get install -qq --no-install-recommends libdbi0-dev libdbd-sqlite3 libssl-dev dnsutils snmp-mibs-downloader libsnmp-perl snmpd
51 - sudo apt-get install -qq --no-install-recommends fping snmp netcat smbclient fping pure-ftpd apache2 postfix libhttp-daemon-ssl-perl
52 - sudo apt-get install -qq --no-install-recommends libdbd-sybase-perl libnet-dns-perl
53 - sudo apt-get install -qq --no-install-recommends slapd ldap-utils
54 - sudo apt-get install -qq --no-install-recommends autoconf automake
55 - sudo apt-get install -qq --no-install-recommends faketime
56 # Trusty related dependencies (not yet provided)
57 - test "$(dpkg -l | grep -E "mysql-(client|server)-[0-9].[0-9]" | grep -c ^ii)" -gt 0 || sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server
58
59before_script:
60 # ensure we have a test database in place for tests
61 - mysql -e "create database IF NOT EXISTS test;" -uroot
62 # Detect LDAP configuration (seems volatile on trusty env)
63 - sed -e 's/cn=admin,dc=nodomain/'$(sudo /usr/sbin/slapcat|grep ^dn:|grep cn=|awk '{print $2}')'/' -i plugins/t/NPTest.cache.travis
64 - tools/setup
65 - ./configure --enable-libtap
66 - make
67 - export NPTEST_CACHE="$(pwd)/plugins/t/NPTest.cache.travis"
68 - ssh-keygen -t dsa -N "" -f ~/.ssh/id_dsa
69 - cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
70 - ssh-keyscan localhost >> ~/.ssh/known_hosts
71 - touch ~/.ssh/config
72 - 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
73 - sudo mkdir -p /var/lib/snmp/mib_indexes
74 - sudo mkdir /media/ramdisk && sudo chmod 777 /media/ramdisk && sudo mount -t tmpfs -o size=20% none /media/ramdisk
75
76script:
77 - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make test; fi
78
79notifications:
80 irc:
81 channels:
82 - "chat.freenode.net#Monitoring-Plugins"
83 on_success: change
84 on_failure: always
85 skip_join: true
86 email:
87 # - team@monitoring-plugins.org
88