use trampoline for less memorey footprint, hopefully

master
Josha von Gizycki 5 years ago
parent ca2757952c
commit 8be219bfbb

@ -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