aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1275cc676b34f01b2eab95f39726d5d3c091c3ee (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: c
notifications:
 irc:
  channels: "anathema.us.nu#anathema"
  use_notice: true
  skip_join: true
env:
 global:
  - secure: "kE1g19PD3K/VlE9VRhCVIyKiliJ6BdPhfNd7t1QB0vFeKT5BHd6SjF1tz+1ei/LAij0NvekMddZ3HS8wQpr7rpiVcyyPuLCgE6t1++86A4ZE+jJ7XKnonwaGwdWll6d42w6buWh0yuFXU/DaZoAi2p2ILEGxvnF+YSVliWZPZWk="
addons:
 coverity_scan:
  project:
   name: "pjanouch/autistdraw"
   description: "Terminal drawing application"
  notification_email: p.janouch@gmail.com
  build_command_prepend: "cmake .. -DCMAKE_BUILD_TYPE=Release"
  build_command: "make"
  branch_pattern: coverity_scan
compiler:
 - clang
 - gcc
before_install:
 - sudo apt-get update -qq
install:
 - sudo apt-get install -y libev-dev libncursesw5-dev
before_script:
 - mkdir build
 - cd build
script:
 - cmake .. -DCMAKE_INSTALL_PREFIX=/usr
 - make
 - cpack -G DEB