Update code to work with OpenSSL 1.1
[nsca-ng.git] / .travis.yml
blob8b92227b9295fa85fc137694b166645c028ecc4f
1 language: c
3 before_install:
4   - sudo add-apt-repository -y "deb ftp://ftp.fu-berlin.de/linux/ubuntu/ trusty main"
5   - sudo apt-get -qq update
7 install:
8   - sudo apt-get -qq install libconfuse-dev libsystemd-daemon-dev
10 before_script:
11   - ./autogen.sh
13 script:
14   - ./configure --enable-server && make check
17 # Trigger Coverity Scan whenever we push into the "coverity" branch.
20 env:
21   global:
22     # This is the encrypted COVERITY_SCAN_TOKEN, created via the "travis
23     # encrypt" command using the project repository's public key.
24     - secure: "exX2eoF7QqazwvGrY+NoG/Q3xuMQORX0SB8buWYBIkGm3g/2BOYOWcP0f0TvMySW7Jnop+YIukJCxlrn8qlxyBhHD+TL+Lp5ehVECxsGT5Ls+fYW+35CQoHt/92i8ELiKeMrWghzLq5tstFjdQa6XEv8bKi35XwMHQlX8XuRFvU="
26 addons:
27   coverity_scan:
28     project:
29       name: "weiss/nsca-ng"
30       description: "An add-on for transferring monitoring data"
31     notification_email: holger@weiss.in-berlin.de
32     build_command_prepend: ./autogen.sh && ./configure --enable-server
33     build_command: make
34     branch_pattern: coverity
36 # vim:set nowrap: