File: .travis.yml

package info (click to toggle)
bitlbee 3.6-1.2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,320 kB
  • sloc: ansic: 29,135; xml: 2,282; sh: 905; makefile: 427; python: 221; perl: 41
file content (46 lines) | stat: -rw-r--r-- 1,509 bytes parent folder | download | duplicates (3)
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
44
45
46
dist: precise
language: c

script:
 - ./configure --pam=1 --ldap=1
 - make check
 - 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
    - fakeroot
    - debhelper
    - devscripts
  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