From c28f78c98301221390eb9e7209253f1b643cd38b Mon Sep 17 00:00:00 2001 From: freewil Date: Wed, 27 Jun 2012 05:32:28 -0400 Subject: [PATCH] add travis ci --- .travis.yml | 11 +++++++++++ Readme.md | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6c189b6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: node_js +node_js: + - 0.6 + - 0.8 +before_install: + - sudo add-apt-repository --yes ppa:bitcoin/bitcoin + - sudo apt-get update + - sudo apt-get install bitcoind +after_install: + - git submodule update --init + \ No newline at end of file diff --git a/Readme.md b/Readme.md index 78528c9..f665309 100644 --- a/Readme.md +++ b/Readme.md @@ -1,5 +1,7 @@ # node-bitcoin +[![Build Status](https://secure.travis-ci.org/jb55/node-bitcoin.png)](http://travis-ci.org/jb55/node-bitcoin) + node-bitcoin is a simple wrapper for the Bitcoin client's JSON-RPC API. The API is equivalent to the API document [here](https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list).