mirror of
https://github.com/vale981/lack
synced 2025-03-06 01:41:39 -05:00
26 lines
1 KiB
YAML
26 lines
1 KiB
YAML
language: common-lisp
|
|
sudo: required
|
|
|
|
env:
|
|
matrix:
|
|
- LISP=sbcl COVERALLS=true
|
|
- LISP=ccl
|
|
|
|
install:
|
|
- curl -L https://raw.githubusercontent.com/fukamachi/roswell/master/scripts/travis-install.sh | sh
|
|
- git clone -b fix-subdir-asd https://github.com/fukamachi/qlot ~/lisp/qlot
|
|
- ros install qlot
|
|
- cd $TRAVIS_BUILD_DIR && qlot install
|
|
|
|
script:
|
|
- qlot exec
|
|
ros -s prove -s cl-coveralls
|
|
-e '(or (coveralls:with-coveralls (:exclude "t")
|
|
(loop for file in (uiop:directory-files (uiop:ensure-directory-pathname (uiop:getenv "TRAVIS_BUILD_DIR")))
|
|
when (and (string= (pathname-type file) "asd")
|
|
(< 2 (length (pathname-name file)))
|
|
(string= (pathname-name file) "t-" :end1 2))
|
|
collect (pathname-name file) into test-files
|
|
finally
|
|
(return (not (some (function null) (mapcar (function prove:run) test-files))))))
|
|
(uiop:quit -1))'
|