source: .travis.yml @ a6005da

Last change on this file since a6005da was a6005da, checked in by Dennis Kaarsemaker <dennis@…>, at 2016-03-25T18:07:53Z

Linux pam authentication backend

This backend authenticates users against pam.

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[4850065]1sudo: false
[e26aa72]2language: c
[91f06e5]3
4script:
[a6005da]5 - ./configure --pam=1
[91f06e5]6 - make check
[4850065]7 - BITLBEE_SKYPE=plugin dpkg-buildpackage -uc -us -d
[91f06e5]8
[4850065]9# ubuntu precise doesn't have libotr5, so extract a prebuilt version to ~/otr
[e26aa72]10before_install:
[4850065]11 - 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
12 - echo "8424feb28a2cff3ce603ddcdff9be788701ff7e4  /tmp/otr.tar.gz" | sha1sum -c -
13 - tar -C "$HOME" -xf /tmp/otr.tar.gz
14 - sed -i "s#/usr#$HOME/otr/usr/#" "$HOME/otr/usr/lib/pkgconfig/libotr.pc"
15 - echo "libotr 5 libotr" > debian/shlibs.local
[e26aa72]16
[91f06e5]17env:
18  global:
[4850065]19   - PKG_CONFIG_PATH=$HOME/otr/usr/lib/pkgconfig/
20   - LD_LIBRARY_PATH=$HOME/otr/usr/lib/
[91f06e5]21   # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
22   #   via the "travis encrypt" command using the project repo's public key
23   - secure: "MO6hy2cRxR02A0nSenfQFyPFpepxorJ+XgNkq2JS7LtI6tcwYRR0alvunIPJXam1/OUKxoFsBJLS1nCJTvEUXFCOvoTSAoMiePTBUEg2zfzcTb5k+cqtcOUznCXHNmXAwrqriP4vkG+57ijO9Ojz2r9LijcvjtFDRFJQY9Rcs38="
24
25addons:
[4850065]26  apt:
27    packages:
28    - libevent-dev
29    - libpurple-dev
30    - check
[a6005da]31    - libpam0g-dev
[91f06e5]32  coverity_scan:
33    project:
34      name: "bitlbee/bitlbee"
35      description: "An IRC to other chat networks gateway"
36    notification_email: dx@dxzone.com.ar
[a6005da]37    build_command_prepend: ./configure --otr=1 --debug=1 --pam=1
[91f06e5]38    build_command: make
39    branch_pattern: coverity_scan
40
41notifications:
42  email: false
Note: See TracBrowser for help on using the repository browser.