From 99855b2d63ef72ef653e6d0fc3faf831fea377b7 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Fri, 28 Dec 2012 14:20:25 +0200 Subject: [PATCH 1/3] travis: Bootstrap autotools before building --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d845621..5db56d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,3 +2,4 @@ language: c compiler: - gcc - clang +script: autoreconf -f -i && ./configure && make && make test From a2de27a828ef7d80a0de4854200335ddd23b7ec5 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Fri, 28 Dec 2012 14:22:24 +0200 Subject: [PATCH 2/3] travis: Run "make check" instead of "make test" --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5db56d6..bd4b160 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,4 @@ language: c compiler: - gcc - clang -script: autoreconf -f -i && ./configure && make && make test +script: autoreconf -f -i && ./configure && make check From 3fab956599d351c0c695b9d9d11715ce3dbc3a46 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Fri, 28 Dec 2012 14:27:31 +0200 Subject: [PATCH 3/3] Add travis build status to README.rst --- README.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.rst b/README.rst index 4607125..08757bf 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,11 @@ Jansson README ============== +|travis|_ + +.. |travis| image:: https://travis-ci.org/akheron/jansson.png +.. _travis: https://travis-ci.org/akheron/jansson + Jansson_ is a C library for encoding, decoding and manipulating JSON data. Its main features and design principles are: