t.travis.yml - clic - Clic is an command line interactive client for gopher wri… | |
git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/ | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
t.travis.yml (1069B) | |
--- | |
1 language: lisp | |
2 | |
3 env: | |
4 matrix: | |
5 - LISP=allegro | |
6 - LISP=ccl | |
7 - LISP=ccl32 | |
8 - LISP=sbcl | |
9 - LISP=sbcl32 | |
10 - LISP=abcl | |
11 - LISP=cmucl | |
12 - LISP=ecl | |
13 | |
14 matrix: | |
15 allow_failures: | |
16 - env: LISP=abcl | |
17 - env: LISP=cmucl | |
18 - env: LISP=ecl | |
19 | |
20 notifications: | |
21 email: | |
22 on_success: change | |
23 on_failure: always | |
24 irc: | |
25 channels: | |
26 - "chat.freenode.net#iolib" | |
27 on_success: change | |
28 on_failure: always | |
29 use_notice: true | |
30 skip_join: true | |
31 | |
32 install: | |
33 - curl -L https://raw.githubusercontent.com/sionescu/cl-travis/master/… | |
34 - cl -e "(cl:in-package :cl-user) | |
35 (dolist (p '(:fiveam)) | |
36 (ql:quickload p :verbose t))" | |
37 | |
38 script: | |
39 - cl -e "(cl:in-package :cl-user) | |
40 (prin1 (lisp-implementation-type)) (terpri) (prin1 (lisp-impl… | |
41 (ql:quickload :bordeaux-threads/test :verbose t) | |
42 (uiop:quit (if (some (lambda (x) (typep x '5am::test-failure)) | |
43 (5am:run :bordeaux-threads)) | |
44 1 0))" | |
45 | |
46 sudo: required |