forked from bitlbee/bitlbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (38 loc) · 1.45 KB
/
.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
35
36
37
38
39
40
41
42
43
sudo: false
language: c
script:
- ./configure --pam=1 --ldap=1
- make check
- BITLBEE_SKYPE=plugin dpkg-buildpackage -uc -us -d
# ubuntu precise doesn't have libotr5, so extract a prebuilt version to ~/otr
before_install:
- wget http://dump.dequis.org/indexed/bitlbee-travis-libs/libotr5_4.1.0_amd64_with_dev_for_travis.tar.gz -O /tmp/otr.tar.gz
- echo "8424feb28a2cff3ce603ddcdff9be788701ff7e4 /tmp/otr.tar.gz" | sha1sum -c -
- tar -C "$HOME" -xf /tmp/otr.tar.gz
- sed -i "s#/usr#$HOME/otr/usr/#" "$HOME/otr/usr/lib/pkgconfig/libotr.pc"
- echo "libotr 5 libotr" > debian/shlibs.local
env:
global:
- PKG_CONFIG_PATH=$HOME/otr/usr/lib/pkgconfig/
- LD_LIBRARY_PATH=$HOME/otr/usr/lib/
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "MO6hy2cRxR02A0nSenfQFyPFpepxorJ+XgNkq2JS7LtI6tcwYRR0alvunIPJXam1/OUKxoFsBJLS1nCJTvEUXFCOvoTSAoMiePTBUEg2zfzcTb5k+cqtcOUznCXHNmXAwrqriP4vkG+57ijO9Ojz2r9LijcvjtFDRFJQY9Rcs38="
addons:
apt:
packages:
- libevent-dev
- libpurple-dev
- check
- libpam0g-dev
- libldap2-dev
coverity_scan:
project:
name: "bitlbee/bitlbee"
description: "An IRC to other chat networks gateway"
notification_email: dx@dxzone.com.ar
build_command_prepend: ./configure --otr=1 --debug=1 --pam=1 --ldap=1
build_command: make
branch_pattern: coverity_scan
notifications:
email: false