2021-08-01 23:21:31 +00:00
|
|
|
(ns build
|
2021-08-13 02:43:04 +00:00
|
|
|
"next.jdbc's build script.
|
|
|
|
|
|
|
|
|
|
clojure -T:build ci
|
2021-08-31 01:23:18 +00:00
|
|
|
clojure -T:build deploy
|
|
|
|
|
|
|
|
|
|
Run tests via:
|
|
|
|
|
clojure -X:test
|
2021-08-13 02:43:04 +00:00
|
|
|
|
|
|
|
|
For more information, run:
|
|
|
|
|
|
|
|
|
|
clojure -A:deps -T:build help/doc"
|
2021-09-23 01:48:05 +00:00
|
|
|
(:refer-clojure :exclude [test])
|
2021-08-03 03:41:43 +00:00
|
|
|
(:require [clojure.tools.build.api :as b]
|
2023-01-24 06:57:42 +00:00
|
|
|
[clojure.tools.deps :as t]
|
|
|
|
|
[deps-deploy.deps-deploy :as dd]))
|
2021-08-01 23:21:31 +00:00
|
|
|
|
2021-08-03 03:23:24 +00:00
|
|
|
(def lib 'com.github.seancorfield/next.jdbc)
|
2022-08-31 06:24:45 +00:00
|
|
|
(defn- the-version [patch] (format "1.3.%s" patch))
|
2021-09-26 00:50:56 +00:00
|
|
|
(def version (the-version (b/git-count-revs nil)))
|
|
|
|
|
(def snapshot (the-version "999-SNAPSHOT"))
|
2023-01-24 06:57:42 +00:00
|
|
|
(def class-dir "target/classes")
|
2021-09-23 01:48:05 +00:00
|
|
|
|
|
|
|
|
(defn test "Run all the tests." [opts]
|
2023-01-24 06:57:42 +00:00
|
|
|
(doseq [alias [:1.10 :1.11 :master]]
|
|
|
|
|
(println "\nRunning tests for Clojure" (name alias))
|
|
|
|
|
(let [basis (b/create-basis {:aliases [:test alias]})
|
|
|
|
|
combined (t/combine-aliases basis [:test alias])
|
|
|
|
|
cmds (b/java-command
|
|
|
|
|
{:basis basis
|
2023-01-24 07:26:31 +00:00
|
|
|
:java-opts (:jvm-opts combined)
|
2023-01-24 06:57:42 +00:00
|
|
|
:main 'clojure.main
|
|
|
|
|
:main-args ["-m" "cognitect.test-runner"]})
|
|
|
|
|
{:keys [exit]} (b/process cmds)]
|
|
|
|
|
(when-not (zero? exit) (throw "Tests failed"))))
|
2021-09-23 01:48:05 +00:00
|
|
|
opts)
|
2021-08-03 03:23:24 +00:00
|
|
|
|
2023-01-24 06:57:42 +00:00
|
|
|
(defn- jar-opts [opts]
|
|
|
|
|
(let [version (if (:snapshot opts) snapshot version)]
|
|
|
|
|
(assoc opts
|
|
|
|
|
:lib lib :version version
|
|
|
|
|
:jar-file (format "target/%s-%s.jar" lib version)
|
|
|
|
|
:scm {:tag (str "v" version)}
|
|
|
|
|
:basis (b/create-basis {})
|
|
|
|
|
:class-dir class-dir
|
|
|
|
|
:target "target"
|
|
|
|
|
:src-dirs ["src"]
|
|
|
|
|
:src-pom "template/pom.xml")))
|
|
|
|
|
|
2021-08-13 02:43:04 +00:00
|
|
|
(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
|
2023-01-24 06:57:42 +00:00
|
|
|
(test opts)
|
|
|
|
|
(b/delete {:path "target"})
|
|
|
|
|
(let [opts (jar-opts opts)]
|
|
|
|
|
(println "\nWriting pom.xml...")
|
|
|
|
|
(b/write-pom opts)
|
|
|
|
|
(println "\nCopying source...")
|
|
|
|
|
(b/copy-dir {:src-dirs ["resources" "src"] :target-dir class-dir})
|
2023-06-11 02:21:42 +00:00
|
|
|
(println "\nBuilding" (:jar-file opts) "...")
|
2023-01-24 06:57:42 +00:00
|
|
|
(b/jar opts))
|
|
|
|
|
opts)
|
2021-08-23 02:30:15 +00:00
|
|
|
|
|
|
|
|
(defn deploy "Deploy the JAR to Clojars." [opts]
|
2023-01-24 06:57:42 +00:00
|
|
|
(let [{:keys [jar-file] :as opts} (jar-opts opts)]
|
|
|
|
|
(dd/deploy {:installer :remote :artifact (b/resolve-path jar-file)
|
|
|
|
|
:pom-file (b/pom-path (select-keys opts [:lib :class-dir]))}))
|
|
|
|
|
opts)
|