-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path.travis.yml
48 lines (41 loc) · 1.16 KB
/
.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
48
language: lisp
dist: xenial
sudo: required
git:
depth: 3
env:
matrix:
#- LISP=abcl
#- LISP=allegro
- LISP=sbcl
- LISP=ccl
#- LISP=clisp
#- LISP=ecl
#- LISP=cmucl
addons:
apt:
packages: &standard_packages
- python-numpy
- python3-numpy
matrix:
allow_failures:
- env: LISP=clisp
#- env: LISP=ccl
install:
- ./install.sh
#- curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash
script:
- cl -e "(in-package :cl-user)
(ql:quickload :py4cl)
(ql:quickload :py4cl/tests)
(if (or
(let ((report (py4cl/tests:run)))
(when (or (plusp (slot-value report 'clunit::failed))
(plusp (slot-value report 'clunit::errors)))
(princ report)))
(let ((py4cl:*python-command* \"python3\"))
(let ((report (py4cl/tests:run)))
(when (or (plusp (slot-value report 'clunit::failed))
(plusp (slot-value report 'clunit::errors)))
(princ report)))))
(uiop:quit 1))"