]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Enhance Travis-CI configuration file
authorAlexander Barton <alex@barton.de>
Tue, 4 Jun 2013 09:35:54 +0000 (11:35 +0200)
committerAlexander Barton <alex@barton.de>
Tue, 4 Jun 2013 09:36:08 +0000 (11:36 +0200)
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

index 07dac5f136e81713a3e1864909f8480e25a64d46..0970f10d27e152bdfe2d42f8d3964f0e9a07a428 100644 (file)
@@ -1,5 +1,8 @@
 language: c
 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
 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