From a1677371c44aac4fd8bd2fbdfd4a1aa52e725d5e Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Sat, 24 Feb 2018 00:32:34 +0100 Subject: [PATCH] Add Travis CI support and add badge to README --- .travis.yml | 20 ++++++++++++++++++++ README => README.md | 12 +++++++++--- 2 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 .travis.yml rename README => README.md (66%) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7f52357 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: lisp +sudo: required + +env: + matrix: + - LISP=abcl + - LISP=allegro + - LISP=sbcl + - LISP=sbcl32 + - LISP=ccl + - LISP=ccl32 + - LISP=clisp + - LISP=clisp32 + - LISP=ecl + +install: + - curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh + +script: + - cl -e '(ql:quickload "deflate")' diff --git a/README b/README.md similarity index 66% rename from README rename to README.md index 76c6990..2397124 100644 --- a/README +++ b/README.md @@ -1,6 +1,8 @@ -This library is an implementation of Deflate (RFC 1951) decompression, -with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC -1952) wrappers of deflate streams. It currently does not handle +[![Build Status](https://travis-ci.org/pmai/Deflate.svg?branch=master)](https://travis-ci.org/pmai/Deflate) + +This library is an implementation of Deflate ([RFC 1951][]) decompression, +with optional support for ZLIB-style ([RFC 1950][]) and gzip-style +([RFC 1952][]) wrappers of deflate streams. It currently does not handle compression, although this is a natural extension. The implementation should be portable across all ANSI compliant CL @@ -19,3 +21,7 @@ in the file COPYING and the header of each source file. Please direct any feedback to pmai@pmsf.de. A git repository of this library is available under http://github.com/pmai/Deflate/tree/master + +[RFC 1951]: https://tools.ietf.org/html/rfc1951 +[RFC 1950]: https://tools.ietf.org/html/rfc1950 +[RFC 1952]: https://tools.ietf.org/html/rfc1952