aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a0a53cf7623bdf0506d506b984a0e8e498fe547b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: c
notifications:
 irc:
  channels: "anathema.us.nu#anathema"
  use_notice: true
  skip_join: true
compiler:
 - clang
 - gcc
before_install:
 - sudo apt-get update -qq
install:
 - sudo apt-get install -y libncursesw5-dev libglib2.0-dev
before_script:
 - mkdir build
 - cd build
script:
 - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=ON
 - make all demos
 - ctest -V
 - cpack -G DEB