From dfc8f6d2797834a71bf22d9ac98823579dd588d2 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Mon, 14 Jan 2013 07:38:47 -0800 Subject: [PATCH 1/3] Create .travis.yml --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..e378d8c7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: c +compiler: + - clang + - gcc +script: "make" From b3335a546959a32ea77b55cafa3f898de9fd5b68 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Mon, 14 Jan 2013 12:59:20 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ef1bf6e9..f32c9255 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ HTTP Parser =========== +[![Build Status](https://travis-ci.org/cmr/http-parser.png?branch=master)](https://travis-ci.org/cmr/http-parser) + This is a parser for HTTP messages written in C. It parses both requests and responses. The parser is designed to be used in performance HTTP applications. It does not make any syscalls nor allocations, it does not From 54cfd320d012db7e31338404aab02165628772cd Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Wed, 16 Jan 2013 10:50:19 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f32c9255..b63418af 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ HTTP Parser =========== -[![Build Status](https://travis-ci.org/cmr/http-parser.png?branch=master)](https://travis-ci.org/cmr/http-parser) +[![Build Status](https://travis-ci.org/joyent/http-parser.png?branch=master)](https://travis-ci.org/joyent/http-parser) This is a parser for HTTP messages written in C. It parses both requests and responses. The parser is designed to be used in performance HTTP