Add Travis CI configuration file.
authorOlof-Joachim Frahm <olof@macrolet.net>
Thu, 15 Jan 2015 23:46:28 +0000 (23:46 +0000)
committerOlof-Joachim Frahm <olof@macrolet.net>
Fri, 16 Jan 2015 00:49:32 +0000 (00:49 +0000)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..131a4c4
--- /dev/null
@@ -0,0 +1,31 @@
+language: lisp
+
+env:
+  matrix:
+    - LISP=abcl
+    - LISP=allegro
+    - LISP=sbcl
+    - LISP=sbcl32
+    - LISP=ccl
+    - LISP=ccl32
+    - LISP=clisp
+    - LISP=clisp32
+    - LISP=cmucl
+    - LISP=ecl
+
+matrix:
+  allow_failures:
+    # CIM not available for CMUCL
+    - env: LISP=cmucl
+
+install:
+  - curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | sh
+
+script:
+  # work around fiveam
+  - cl -e '(ql:quickload :cffi-grovel)
+           (ql:quickload :cl-inotify-tests)
+           (unless (let ((results (fiveam:run (find-symbol "CL-INOTIFY" "CL-INOTIFY-TESTS"))))
+                     (fiveam:explain! results)
+                     (notany (function fiveam::test-failure-p) results))
+             (uiop:quit 1))'