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