ponymap/.travis.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2017-06-07 21:35:54 +02:00
sudo: required
dist: trusty
2015-02-08 05:44:02 +01:00
language: c
notifications:
irc:
2016-03-14 20:50:48 +01:00
channels: "irc.janouch.name#dev"
2015-02-08 05:44:02 +01:00
use_notice: true
skip_join: true
2017-01-29 20:48:18 +01:00
template:
- "%{repository_name}#%{build_number} on %{branch}: %{message}"
- " %{compare_url}"
- " %{build_url}"
on_success: change
on_failure: always
2015-02-14 08:15:27 +01:00
env:
global:
- secure: "HwvulqH0sB/PJVWzv/N3C8SjbeoW0QDWY2WmdVOxj2pzLJY/KtyWCktHRmXxGLcua99dA3wuwWpo5zMj+exw5pqnhgatnpinMR0DZ1+1hrEqPTbRwm+iy+QLsk1kUzksbijewmCYOggXoWu6ltvU9aEFjsSInuWap0MlFbBidGE="
addons:
coverity_scan:
project:
name: "pjanouch/ponymap"
description: "Experimental network scanner"
notification_email: p.janouch@gmail.com
2017-06-07 21:35:54 +02:00
build_command_prepend: "cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_LUA=ON"
2015-02-14 08:15:27 +01:00
build_command: "make"
branch_pattern: coverity_scan
2015-02-08 05:44:02 +01:00
compiler:
- clang
- gcc
before_install:
2017-06-07 21:35:54 +02:00
# We need this PPA for Lua 5.3
2015-02-08 16:55:28 +01:00
- sudo add-apt-repository ppa:ukplc-team/ppa -y
2015-02-08 05:44:02 +01:00
- sudo apt-get update -qq
install:
2015-02-08 05:46:15 +01:00
- sudo apt-get install -y help2man libjansson-dev libncursesw5-dev
2017-06-07 21:35:54 +02:00
liblua5.3-dev
2015-02-08 05:44:02 +01:00
before_script:
- mkdir build
- cd build
script:
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
2015-02-08 05:44:02 +01:00
- make
- cpack -G DEB