mirror of
https://github.com/pmai/Deflate.git
synced 2025-12-21 21:14:29 +01:00
Add Travis CI support and add badge to README
This commit is contained in:
20
.travis.yml
Normal file
20
.travis.yml
Normal file
@ -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")'
|
||||||
@ -1,6 +1,8 @@
|
|||||||
This library is an implementation of Deflate (RFC 1951) decompression,
|
[](https://travis-ci.org/pmai/Deflate)
|
||||||
with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC
|
|
||||||
1952) wrappers of deflate streams. It currently does not handle
|
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.
|
compression, although this is a natural extension.
|
||||||
|
|
||||||
The implementation should be portable across all ANSI compliant CL
|
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
|
Please direct any feedback to pmai@pmsf.de. A git repository of this
|
||||||
library is available under http://github.com/pmai/Deflate/tree/master
|
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
|
||||||
Reference in New Issue
Block a user