Add Travis CI configuration
This commit is contained in:
parent
d8ecd402c9
commit
14046db38d
|
@ -0,0 +1,20 @@
|
||||||
|
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 libjansson-dev libncursesw5-dev
|
||||||
|
before_script:
|
||||||
|
- mkdir build
|
||||||
|
- cd build
|
||||||
|
script:
|
||||||
|
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_LUA=OFF
|
||||||
|
- make
|
||||||
|
- cpack -G DEB
|
2
README
2
README
|
@ -25,7 +25,7 @@ Build dependencies: CMake, pkg-config, help2man, curses, openssl, Jansson,
|
||||||
$ git submodule update
|
$ git submodule update
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
$ cd build
|
$ cd build
|
||||||
$ cmake .. -DCMAKE_BUILD_TYPE=Debug -DWITH_LUA=NO
|
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_LUA=NO
|
||||||
$ make
|
$ make
|
||||||
|
|
||||||
To install the application, you can do either the usual:
|
To install the application, you can do either the usual:
|
||||||
|
|
Loading…
Reference in New Issue