master
Josha von Gizycki 5 years ago
parent fbe75566af
commit d1f55bdba0

@ -27,18 +27,27 @@
(defn test [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein trampoline test"))
(defn bikeshed [args ctx]
(defn bikeshed
"Deprecated"
[args ctx]
(lcd-shell/bash ctx (:cwd args) "lein trampoline bikeshed"))
(defn eastwood [args ctx]
(defn eastwood
"Deprecated"
[args ctx]
(lcd-shell/bash ctx (:cwd args) "lein trampoline eastwood"))
(defn cloverage [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein trampoline cloverage --no-html"))
(defn kibit [args ctx]
(defn kibit
"Deprecated"
[args ctx]
(lcd-shell/bash ctx (:cwd args) "lein trampoline kibit"))
(defn code-quality [ærgs ctx]
(lcd-shell/bash ctx (:cwd args) "lein do eastwood, bikeshed, kibit"))
(def pipeline-def
`((cf/either
@ -48,9 +57,7 @@
clone
compile
(cf/in-parallel
code-quality
ancient
test
eastwood
bikeshed
cloverage
kibit))))
cloverage))))

Loading…
Cancel
Save