-
Notifications
You must be signed in to change notification settings - Fork 47
/
.travis.yml
47 lines (42 loc) · 1008 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
47
os: linux
dist: focal
language: generic
env:
jobs:
- LISP=sbcl
- LISP=ccl
- LISP=ecl
- LISP=abcl
- LISP=clisp
- LISP=allegro
# - LISP=sbcl32
# - lisp=ccl32
# - LISP=cmucl
jobs:
fast_finish: true
allow_failures:
- env: LISP=clisp
- env: LISP=allegro
# - env: LISP=sbcl32
# - env: LISP=ccl32
# - 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
script:
- cl -e "(cl:in-package :cl-user)
(prin1 (lisp-implementation-type)) (terpri) (prin1 (lisp-implementation-version)) (terpri)
(ql:quickload :bordeaux-threads/test :verbose t)
(5am:run! :bordeaux-threads)
(uiop:quit
(if (5am:run! :bordeaux-threads-2) 0 -1))"