fork of https://github.com/jorams/birch with SSL patch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
541 B
23 lines
541 B
language: common-lisp |
|
|
|
env: |
|
matrix: |
|
- LISP=sbcl |
|
- LISP=sbcl32 |
|
- LISP=ccl |
|
- LISP=ccl32 |
|
- LISP=clisp |
|
- LISP=clisp32 |
|
- LISP=abcl |
|
|
|
install: |
|
- curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash |
|
- sudo apt-get update |
|
|
|
script: |
|
- cl -e '(ql:quickload :birch.test)' |
|
-e '(setf *debugger-hook* |
|
(lambda (cl-user::c cl-user::h) |
|
(declare (ignore cl-user::c cl-user::h)) |
|
(uiop:quit -1)))' |
|
-e '(asdf:test-system :birch)'
|
|
|