aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: da0e221a0509383849b40b0713bc6dc419aa42a4 (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
language: cpp
compiler:
  - gcc
  - clang
before_install:
  - sudo apt-get update
install:
  - sudo apt-get install --no-install-recommends libncurses5-dev gettext doxygen expect
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