aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..1ec35e59
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,24 @@
+language: cpp
+compiler:
+ - gcc
+ - clang
+before_install:
+ - sudo apt-get update
+install:
+ - sudo apt-get install --no-install-recommends bc doxygen expect gettext libncurses5-dev
+script:
+ - autoreconf
+ - ./configure
+ - make
+ - sudo make install
+ - make test SHOW_INTERACTIVE_LOG=1
+notifications:
+ irc:
+ channels:
+ - "irc.oftc.net#fish"
+ template:
+ - "%{repository}#%{build_number} (%{commit} on %{branch} by %{author}): %{message} Details at %{build_url}"
+ use_notice: true
+ skip_join: true
+matrix:
+ fast_finish: true