2015-12-09 21:00:44 +01:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2015-02-08 05:53:55 +01:00
|
|
|
language: c
|
|
|
|
notifications:
|
|
|
|
irc:
|
2015-04-10 03:15:28 +02:00
|
|
|
channels: "anathema.irc.so#anathema"
|
2015-02-08 05:53:55 +01:00
|
|
|
use_notice: true
|
|
|
|
skip_join: true
|
2015-02-14 06:24:47 +01:00
|
|
|
env:
|
|
|
|
global:
|
2015-07-11 13:53:12 +02:00
|
|
|
- secure: "ck6keK5tTbVCN7VGyKglS890hjovUNt2zyOydiyFtQDciaB/rvEwkKy4anMCEdZHFpGAPE9iBmNYaGUsD1Y+KifhhImVMbuThe2D8MLv5crSLRheYPbbmhO8MWPAxmQnuQhpwsUKZlHvUfX8nh+d0juNdqXklvhVml78Gi99QFw="
|
2015-05-07 23:37:20 +02:00
|
|
|
matrix:
|
|
|
|
- readline=ON libedit=OFF
|
|
|
|
- readline=OFF libedit=ON
|
2015-02-14 06:24:47 +01:00
|
|
|
addons:
|
|
|
|
coverity_scan:
|
|
|
|
project:
|
2015-04-30 01:39:08 +02:00
|
|
|
name: "pjanouch/uirc3"
|
|
|
|
description: "Experimental IRC client, daemon and bot"
|
2015-02-14 06:24:47 +01:00
|
|
|
notification_email: p.janouch@gmail.com
|
|
|
|
build_command_prepend: "cmake .. -DCMAKE_BUILD_TYPE=Release"
|
|
|
|
build_command: "make"
|
|
|
|
branch_pattern: coverity_scan
|
2015-02-08 05:53:55 +01:00
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
- gcc
|
|
|
|
before_install:
|
2015-05-07 23:37:20 +02:00
|
|
|
# We need this PPA for a recent version of libedit
|
2015-05-08 00:16:16 +02:00
|
|
|
- sudo add-apt-repository ppa:ondrej/php5-5.6 -y
|
2015-12-09 21:00:44 +01:00
|
|
|
# We need this PPA for Lua 5.3
|
|
|
|
- sudo add-apt-repository ppa:vbernat/haproxy-1.6 -y
|
2015-02-08 05:53:55 +01:00
|
|
|
- sudo apt-get update -qq
|
2015-02-12 02:27:12 +01:00
|
|
|
install:
|
2015-12-09 21:00:44 +01:00
|
|
|
- sudo apt-get install -y libncursesw5-dev libreadline-dev libedit-dev
|
|
|
|
liblua5.3-dev help2man expect
|
2015-02-12 02:27:12 +01:00
|
|
|
before_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2015-02-08 05:53:55 +01:00
|
|
|
script:
|
2015-05-08 00:32:39 +02:00
|
|
|
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
2015-05-07 23:37:20 +02:00
|
|
|
-DWANT_READLINE=$readline -DWANT_LIBEDIT=$libedit
|
2015-12-08 23:38:02 +01:00
|
|
|
- make all test
|
2015-02-12 02:27:12 +01:00
|
|
|
- cpack -G DEB
|
2015-05-12 05:40:20 +02:00
|
|
|
- ../test
|