Compare commits

...

2 Commits

@ -19,25 +19,25 @@
(lcd-git/clone ctx repo-uri ref cwd)))
(defn ancient [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein ancient :all"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline ancient :all"))
(defn compile [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein compile"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline compile"))
(defn test [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein test"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline test"))
(defn bikeshed [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein bikeshed"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline bikeshed"))
(defn eastwood [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein eastwood"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline eastwood"))
(defn cloverage [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein cloverage --no-html"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline cloverage --no-html"))
(defn kibit [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein kibit"))
(lcd-shell/bash ctx (:cwd args) "lein trampoline kibit"))
(def pipeline-def

Loading…
Cancel
Save