If you want test your Common Lisp project under the following conditions, copy .travis.yml
and test-docker
folder to your project. Then, register your project to Travis CI.
- Docker: eshamster/cl-base
- Test library: fukamachi/rove
- Common Lisp implementations
- SBCL (
sbcl-bin
) - Clozure CL (
ccl-bin
)
- SBCL (
If you want to add (delete) some Common Lisp implementations that can be installed using ros install
(command of Roswell), edit the following files after copying.
.travis.yml
: Add (Delete) implementation to the following matrixenv: matrix: - LISP=sbcl-bin - LISP=ccl-bin
test-docker/Dockerfile
: Add (Delete)ros install
to the followingRUN
commandRUN ros install ccl-bin && \ ros install rove
These codes are licensed under CC0.