update deps, add ancient to build step

master
Josha von Gizycki 6 years ago
parent 0d0d69dbfb
commit 98a38b4009

@ -1,14 +1,14 @@
(defproject wanijo-pipeline "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[lambdacd "0.14.0"]
:dependencies [[lambdacd "0.14.2"]
[lambdacd-git "0.4.1"]
[lambdaui "1.1.0"]
[http-kit "2.3.0"]
[org.clojure/clojure "1.9.0"]
[org.clojure/tools.logging "0.3.1"]
[org.slf4j/slf4j-api "1.7.5"]
[ch.qos.logback/logback-core "1.0.13"]
[ch.qos.logback/logback-classic "1.0.13"]]
[org.clojure/tools.logging "0.4.1"]
[org.slf4j/slf4j-api "1.7.25"]
[ch.qos.logback/logback-core "1.2.3"]
[ch.qos.logback/logback-classic "1.2.3"]]
:profiles {:uberjar {:aot :all}}
:main wanijo-pipeline.core)

@ -11,4 +11,6 @@
(with-workspace
clone
compile
test)))
(in-parallel
check-ancient
test))))

@ -16,6 +16,9 @@
ref (or revision repo-branch)]
(lcd-git/clone ctx repo-uri ref cwd)))
(defn check-ancient [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein ancient"))
(defn compile [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein compile"))

Loading…
Cancel
Save