aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 2b9f86174d73b0ee8bdd375c16d6ff93acf22ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: cpp
compiler:
  - gcc
  - clang
addons:
  apt:
    packages:
      - bc
      - doxygen
      - expect
      - gettext
      - libncurses5-dev
sudo: false
script:
  - autoreconf
  - ./configure --prefix=$HOME/prefix
  - make -j2
  - 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
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/61821cec3015bf0f8bb1
matrix:
  fast_finish: true