git.fiddlerwoaroof.com
Browse code

Add .travis.yml

Fernando Borretti authored on 30/01/2015 01:05:24
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,24 @@
1
+language: common-lisp
2
+
3
+env:
4
+  matrix:
5
+    - LISP=sbcl
6
+
7
+install:
8
+  # Install cl-travis
9
+  - curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash
10
+  # Clone cl-libyaml
11
+  - git clone https://github.com/eudoxia0/cl-libyaml.git quicklisp/local-projects/cl-libyaml
12
+
13
+script:
14
+  - cl -e '(ql:quickload :fiveam)'
15
+       -e '(setf fiveam:*debug-on-error* t)'
16
+       -e '(setf *debugger-hook*
17
+                 (lambda (c h)
18
+                   (declare (ignore c h))
19
+                   (uiop:quit -1)))'
20
+       -e '(ql:quickload :cl-yaml-test)'
21
+
22
+notifications:
23
+  email:
24
+    - eudoxiahp@gmail.com