-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
34 lines (26 loc) · 925 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
dist: xenial
language: c
install:
- sudo apt-get -qq install libconfuse-dev libsystemd-dev
before_script:
- ./autogen.sh
script:
- ./configure --enable-server && make check
#
# Trigger Coverity Scan whenever we push into the "coverity" branch.
#
env:
global:
# This is the encrypted COVERITY_SCAN_TOKEN, created via the "travis
# encrypt" command using the project repository's public key.
- secure: "exX2eoF7QqazwvGrY+NoG/Q3xuMQORX0SB8buWYBIkGm3g/2BOYOWcP0f0TvMySW7Jnop+YIukJCxlrn8qlxyBhHD+TL+Lp5ehVECxsGT5Ls+fYW+35CQoHt/92i8ELiKeMrWghzLq5tstFjdQa6XEv8bKi35XwMHQlX8XuRFvU="
addons:
coverity_scan:
project:
name: "weiss/nsca-ng"
description: "An add-on for transferring monitoring data"
notification_email: holger@weiss.in-berlin.de
build_command_prepend: ./autogen.sh && ./configure --enable-server
build_command: make
branch_pattern: coverity
# vim:set nowrap: