diff --git a/src/wanijo_pipeline/wanijo_pipeline.clj b/src/wanijo_pipeline/wanijo_pipeline.clj index ddf358b..679086b 100644 --- a/src/wanijo_pipeline/wanijo_pipeline.clj +++ b/src/wanijo_pipeline/wanijo_pipeline.clj @@ -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))))