From 4a33ec57a2f49b2b1f71266bd82e4852f4c994b6 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Tue, 30 Oct 2012 23:41:20 +0700 Subject: [PATCH] Add configuration for travis-ci --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..90ae6248 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: cpp +compiler: + - gcc + - clang +before_install: + - sudo apt-get update -qq + - sudo apt-get install -qq swig libperl-dev python3-dev tcl-dev libsasl2-dev +script: + - ./bootstrap.sh + - mkdir build + - cd build + - ../configure --enable-perl --enable-python --enable-tcl --enable-cyrus + - make + - sudo make install +notifications: + irc: + channels: + - "irc.freenode.net#znc" + - "irc.shoutcast.com#znc" + on_success: always + on_failure: always