Point to the new docs.
[bordeaux-threads.git] / .travis.yml
blob4d2a890adb7c68725fc597cc0573e4208dd41844
1 os: linux
2 dist: bionic
3 language: generic
5 env:
6   jobs:
7     - LISP=sbcl
8     - LISP=ccl
9     - LISP=ecl
10     - LISP=allegro
11     - LISP=abcl
12     - LISP=clisp
13     - LISP=sbcl32
14     # - LISP=ccl32
15     # - LISP=cmucl
17 jobs:
18   allow_failures:
19     - env: LISP=clisp
20     - env: LISP=sbcl32
21     # - env: LISP=ccl32
22     # - env: LISP=cmucl
24 notifications:
25   email:
26     on_success: change
27     on_failure: always
28   irc:
29     channels:
30       - "chat.freenode.net#iolib"
31     on_success: change
32     on_failure: always
33     use_notice: true
34     skip_join: true
36 install:
37   - curl -L https://raw.githubusercontent.com/lispci/cl-travis/master/install.sh | sh
39 script:
40   - cl -e "(cl:in-package :cl-user)
41            (prin1 (lisp-implementation-type)) (terpri) (prin1 (lisp-implementation-version)) (terpri)
42            (ql:quickload :bordeaux-threads/test :verbose t)
43            (uiop:quit (if (5am:run! :bordeaux-threads-2) 0 -1))"