diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-08 05:27:36 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-08 05:27:36 +0100 |
commit | 799636b16c6fc3c8ae0730ea3fd9cc5c96d132fb (patch) | |
tree | 9801c1932641548c25f383598d37c032dbb5d145 | |
parent | 8d7ea57a004908890760ffc77f2b4cc1fc6ae789 (diff) | |
download | json-rpc-shell-799636b16c6fc3c8ae0730ea3fd9cc5c96d132fb.tar.gz json-rpc-shell-799636b16c6fc3c8ae0730ea3fd9cc5c96d132fb.tar.xz json-rpc-shell-799636b16c6fc3c8ae0730ea3fd9cc5c96d132fb.zip |
Add Travis CI configuration
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..830ab24 --- /dev/null +++ b/.travis.yml @@ -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 libcurl-dev libjansson-dev libev-dev libreadline-dev +before_script: + - mkdir build + - cd build +script: + - cmake .. -DCMAKE_INSTALL_PREFIX=/usr + - make + - cpack -G DEB |