source: .travis.yml @ b82ba4a

Last change on this file since b82ba4a was bcd8f52, checked in by dequis <dx@…>, at 2019-10-31T19:42:53Z

.travis.yml: fix dpkg-buildpackage with quilt format

This adds the -b flag, which means "Specifies a binary-only build, no
source files are to be built and/or distributed"

Found in https://askubuntu.com/a/675211/611938

  • Property mode set to 100644
File size: 1.0 KB
Line 
1dist: trusty
2language: c
3
4script:
5 - ./configure --pam=1 --ldap=1
6 - make check
7 - dpkg-buildpackage -uc -us -b
8
9env:
10  global:
11   - PKG_CONFIG_PATH=$HOME/otr/usr/lib/pkgconfig/
12   - LD_LIBRARY_PATH=$HOME/otr/usr/lib/
13   # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
14   #   via the "travis encrypt" command using the project repo's public key
15   - secure: "MO6hy2cRxR02A0nSenfQFyPFpepxorJ+XgNkq2JS7LtI6tcwYRR0alvunIPJXam1/OUKxoFsBJLS1nCJTvEUXFCOvoTSAoMiePTBUEg2zfzcTb5k+cqtcOUznCXHNmXAwrqriP4vkG+57ijO9Ojz2r9LijcvjtFDRFJQY9Rcs38="
16
17addons:
18  apt:
19    packages:
20    - libevent-dev
21    - libpurple-dev
22    - check
23    - libpam0g-dev
24    - libldap2-dev
25    - fakeroot
26    - debhelper
27    - devscripts
28    - libotr5-dev
29  coverity_scan:
30    project:
31      name: "bitlbee/bitlbee"
32      description: "An IRC to other chat networks gateway"
33    notification_email: dx@dxzone.com.ar
34    build_command_prepend: ./configure --otr=1 --debug=1 --pam=1 --ldap=1
35    build_command: make
36    branch_pattern: coverity_scan
37
38notifications:
39  email: false
Note: See TracBrowser for help on using the repository browser.