diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-02 08:49:21 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-02 19:14:37 +0100 |
commit | 8a3241d5c46e8b8fac382f606147285e314f1f6b (patch) | |
tree | 95fb8534ca24f21ebf5bb9a9713924c3c6c11aed /.travis.yml | |
download | json-rpc-shell-8a3241d5c46e8b8fac382f606147285e314f1f6b.tar.gz json-rpc-shell-8a3241d5c46e8b8fac382f606147285e314f1f6b.tar.xz json-rpc-shell-8a3241d5c46e8b8fac382f606147285e314f1f6b.zip |
Initial commit
Not even the demo is able to compile yet.
I'm just tracking my progress.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d8e73d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: c +notifications: + irc: + channels: "anathema.us.nu#anathema" + use_notice: true + skip_join: true +compiler: + - clang + - gcc +before_install: + - sudo add-apt-repository ppa:ukplc-team/ppa -y + - sudo apt-get update -qq +install: + - sudo apt-get install -y help2man libjansson-dev libev-dev +before_script: + - mkdir build + - cd build +script: + - cmake .. -DCMAKE_INSTALL_PREFIX=/usr + - make + - cpack -G DEB |