diff --git a/src/wanijo_pipeline/pipeline.clj b/src/wanijo_pipeline/pipeline.clj index 1483ad4..45b07bb 100644 --- a/src/wanijo_pipeline/pipeline.clj +++ b/src/wanijo_pipeline/pipeline.clj @@ -12,5 +12,7 @@ clone compile (in-parallel - check-ancient - test)))) + ancient + test + eastwood + bikeshed)))) diff --git a/src/wanijo_pipeline/steps.clj b/src/wanijo_pipeline/steps.clj index 61a006f..b40ba92 100644 --- a/src/wanijo_pipeline/steps.clj +++ b/src/wanijo_pipeline/steps.clj @@ -16,7 +16,7 @@ ref (or revision repo-branch)] (lcd-git/clone ctx repo-uri ref cwd))) -(defn check-ancient [args ctx] +(defn ancient [args ctx] (lcd-shell/bash ctx (:cwd args) "lein ancient")) (defn compile [args ctx] @@ -24,3 +24,9 @@ (defn test [args ctx] (lcd-shell/bash ctx (:cwd args) "lein test")) + +(defn bikeshed [args ctx] + (lcd-shell/bash ctx (:cwd args) "lein bikeshed")) + +(defn eastwood [args ctx] + (lcd-shell/bash ctx (:cwd args) "lein eastwood"))