Module: ngircd.git Branch: master Commit: e377f4ea475bae2753e4728f657f146cdeac4d37 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=e377f...
Author: Alexander Barton alex@barton.de Date: Tue Jun 4 11:35:54 2013 +0200
Enhance Travis-CI configuration file
It now configures the sandbox to build ngIRCd with IPv6, IDENT, PAM, TCP-Wrappers, and zlib support. And it installs expect(1) and telnet(1) for the test suite.
---
.travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml index 07dac5f..0970f10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ language: c +before_install: + - sudo apt-get update -qq + - sudo apt-get install -qq libident-dev libpam0g-dev libssl-dev libwrap0-dev zlib1g-dev expect telnet compiler: - gcc - clang -script: ./autogen.sh && ./configure && make check +script: ./autogen.sh && ./configure --enable-ipv6 --with-ident --with-pam --with-tcp-wrappers --with-zlib && make check
ngircd-commits@lists.barton.de