-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
46 lines (41 loc) · 989 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
os: linux
dist: focal
language: generic
env:
jobs:
- LISP=sbcl
- LISP=ccl
- LISP=ecl
- LISP=abcl
- LISP=clisp
# - LISP=allegro
# - LISP=ccl32
# - LISP=sbcl32
# - LISP=cmucl
matrix:
fast_finish: true
allow_failures:
- env: LISP=ccl32
- env: LISP=sbcl32
# - env: LISP=cmucl
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/lispci/cl-travis/master/install.sh | sh
- cl -e "(cl:in-package :cl-user)
(dolist (p '(:trivial-features :fiveam))
(ql:quickload p :verbose t))"
script:
- cl -e "(cl:in-package :cl-user)
(print (lisp-implementation-version))(terpri)
(ql:quickload :swap-bytes/test :verbose t)
(uiop:quit (if (5am:run! :bordeaux-threads-2) 0 -1))"