Improving travis functionality
[wolf] / src / main / style-checker.asd
index f5bc95d3fda5eaa44bf9f3653b5a7747babc8c1a..29862ff9c857b348fea869a2c8b528fa32cce62e 100644 (file)
@@ -1,20 +1,8 @@
-; 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)"
+ :components ((:file "package") (:file "syntax-checker"))
  :serial t
- :depends-on (:cl-ppcre :style-checker.internal))
+ :depends-on #-travis (:cl-ppcre) #+travis nil) ; We don't load up systems if in travis mode