21 lines
389 B
YAML
21 lines
389 B
YAML
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 libcurl4-openssl-dev libjansson-dev libev-dev libreadline-dev
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
script:
|
|
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
|
- make
|
|
- cpack -G DEB
|