Merge commit '728a186263' as 'third_party/lisp/fiveam'
This commit is contained in:
commit
7db9b2aa71
20 changed files with 2596 additions and 0 deletions
47
third_party/lisp/fiveam/.travis.yml
vendored
Normal file
47
third_party/lisp/fiveam/.travis.yml
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
dist: bionic
|
||||
language: lisp
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- LISP=abcl
|
||||
- LISP=allegro
|
||||
- LISP=ccl
|
||||
- LISP=ccl32
|
||||
- LISP=ecl
|
||||
- LISP=sbcl
|
||||
- LISP=sbcl32
|
||||
- LISP=cmucl
|
||||
|
||||
matrix:
|
||||
allow_failures:
|
||||
- env: LISP=allegro
|
||||
- env: LISP=ccl32
|
||||
- env: LISP=cmucl
|
||||
- env: LISP=sbcl32
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: change
|
||||
on_failure: always
|
||||
irc:
|
||||
channels:
|
||||
- "chat.freenode.net#iolib"
|
||||
on_success: change
|
||||
on_failure: always
|
||||
use_notice: true
|
||||
skip_join: true
|
||||
|
||||
install:
|
||||
- curl -L https://raw.githubusercontent.com/sionescu/cl-travis/master/install.sh | sh
|
||||
- cl -e "(cl:in-package :cl-user)
|
||||
(dolist (p '(:alexandria))
|
||||
(ql:quickload p :verbose t))"
|
||||
|
||||
script:
|
||||
- cl -e "(cl:in-package :cl-user)
|
||||
(ql:quickload :fiveam/test :verbose t)
|
||||
(uiop:quit (if (some (lambda (x) (typep x '5am::test-failure))
|
||||
(5am:run :it.bese.fiveam))
|
||||
1 0))"
|
||||
|
||||
sudo: required
|
||||
Loading…
Add table
Add a link
Reference in a new issue