summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 56fd4ffb0e23074f26515df0bb5ca8ceb8de4e42 (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
language: haskell

ghc:
  - 7.6

notifications:
  email: false

install:
  cabal install --enable-tests --enable-benchmark --force-reinstalls --only-dependencies

script:
  cabal configure --enable-tests --enable-benchmark && cabal build && cabal test

notifications:
  email:
    on_success: never
    on_failure: change

  irc:
    channels:
      - "chat.freenode.net#haskell-bittorrent"
    on_success: change
    on_failure: change

    use_notice: true
    template:
      - "%{repository}#%{build_number} : %{message} for about %{duration}"
      - "Commit:  %{branch}/%{commit} by %{author}"
      - "Changes: %{compare_url}"
      - "Build:   %{build_url}"