Adding travis
[wolf] / src / main / style-checker.asd
index 3ed785e2a1d54431d26fb36cbf26e0488e0340d3..f5bc95d3fda5eaa44bf9f3653b5a7747babc8c1a 100644 (file)
@@ -1,8 +1,20 @@
+; The systems are split up into two because travis will run more smoothly
+; if we use a custom built sbcl that has all the deps pre-loaded since
+; we are sure those will work just fine :)
+;
+; You should link to this file in your systems directory, or however you
+; handle your asdf configurations.  Then just (asdf:load-system :clnl)
+;
+; There's probably a better way, but I don't know it
+
+(asdf:defsystem style-checker.internal
+ :serial t
+ :components ((:file "package") (:file "syntax-checker")))
+
 (asdf:defsystem style-checker
  :name "Style Checker"
  :version "0.1"
  :maintainer "Frank Duncan (frank@kank.com)"
  :author "Frank Duncan (frank@kank.com)"
  :serial t
- :components ((:file "package") (:file "syntax-checker"))
- :depends-on (:cl-ppcre))
+ :depends-on (:cl-ppcre :style-checker.internal))