40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
language: c
|
|
notifications:
|
|
irc:
|
|
channels: "anathema.irc.so#anathema"
|
|
use_notice: true
|
|
skip_join: true
|
|
env:
|
|
global:
|
|
- secure: "NB5gz8zMejijB1I4agUjAzYnc4lmxTk6ZGy6tc20zPhyCYXtnHFNvS0TYbpD6k1lF8mvDs0V9U+XPEFOxZf+4UOwZJfNsz/AuDAvP48cfeidNvFcZzOQ6rG60MJJ4oyy1KuemKTzZYI5r46+KBjrCa6Ne9HeAKFd4ze2f4H1nyU="
|
|
matrix:
|
|
- readline=ON libedit=OFF
|
|
- readline=OFF libedit=ON
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "pjanouch/uirc3"
|
|
description: "Experimental IRC client, daemon and bot"
|
|
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:
|
|
# We need this PPA for a recent version of libedit
|
|
- sudo add-apt-repository ppa:ondrej/php5-5.6 -y
|
|
- sudo apt-get update -qq
|
|
install:
|
|
- sudo apt-get install -y help2man libedit-dev expect
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
script:
|
|
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
|
-DWANT_READLINE=$readline -DWANT_LIBEDIT=$libedit
|
|
- make
|
|
- cpack -G DEB
|
|
- ../test
|