82 lines
2.9 KiB
Clojure
82 lines
2.9 KiB
Clojure
(ns build
|
|
"next.jdbc's build script.
|
|
|
|
clojure -T:build ci
|
|
clojure -T:build deploy
|
|
|
|
Run tests via:
|
|
clojure -M:test:runner
|
|
|
|
For more information, run:
|
|
|
|
clojure -A:deps -T:build help/doc"
|
|
(:refer-clojure :exclude [test])
|
|
(:require [clojure.tools.build.api :as b]
|
|
[deps-deploy.deps-deploy :as dd]
|
|
[clojure.string :as str]))
|
|
|
|
(def lib 'com.github.seancorfield/next.jdbc)
|
|
(defn- the-version [patch] (format "1.3.%s" patch))
|
|
(def version (the-version (b/git-count-revs nil)))
|
|
(def snapshot (the-version "9999-SNAPSHOT"))
|
|
(def class-dir "target/classes")
|
|
|
|
(defn test "Run all the tests." [opts]
|
|
(doseq [alias [:1.10 :1.11 :1.12]]
|
|
(println "\nRunning tests for Clojure" (name alias))
|
|
(let [basis (b/create-basis
|
|
{:aliases (cond-> [:test alias]
|
|
(str/starts-with? (System/getProperty "java.version") "21")
|
|
(conj :jdk21))})
|
|
cmds (b/java-command
|
|
{:basis basis
|
|
:main 'clojure.main
|
|
:main-args ["-m" "lazytest.main"]})
|
|
{:keys [exit]} (b/process cmds)]
|
|
(when-not (zero? exit) (throw (ex-info "Tests failed" {})))))
|
|
opts)
|
|
|
|
(defn- pom-template [version]
|
|
[[:description "The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases."]
|
|
[:url "https://github.com/seancorfield/next-jdbc"]
|
|
[:licenses
|
|
[:license
|
|
[:name "Eclipse Public License"]
|
|
[:url "http://www.eclipse.org/legal/epl-v10.html"]]]
|
|
[:developers
|
|
[:developer
|
|
[:name "Sean Corfield"]]]
|
|
[:scm
|
|
[:url "https://github.com/seancorfield/next-jdbc"]
|
|
[:connection "scm:git:https://github.com/seancorfield/next-jdbc.git"]
|
|
[:developerConnection "scm:git:ssh:git@github.com:seancorfield/next-jdbc.git"]
|
|
[:tag (str "v" version)]]])
|
|
|
|
(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)
|
|
:basis (b/create-basis {})
|
|
:class-dir class-dir
|
|
:target "target"
|
|
:src-dirs ["src"]
|
|
:pom-data (pom-template version))))
|
|
|
|
(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
|
|
(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})
|
|
(println "\nBuilding" (:jar-file opts) "...")
|
|
(b/jar opts))
|
|
opts)
|
|
|
|
(defn deploy "Deploy the JAR to Clojars." [opts]
|
|
(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)
|