start testing against 1.11 and master (1.12)

This commit is contained in:
Sean Corfield 2022-04-04 16:53:51 -07:00
parent b0af453994
commit 0cb10285af
2 changed files with 3 additions and 2 deletions

View file

@ -23,7 +23,7 @@
(reduce (fn [opts alias] (reduce (fn [opts alias]
(bb/run-tests (assoc opts :aliases [alias]))) (bb/run-tests (assoc opts :aliases [alias])))
opts opts
[:1.10 :master]) [:1.10 :1.11 :master])
opts) opts)
(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts] (defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]

View file

@ -12,7 +12,8 @@
;; versions to test against: ;; versions to test against:
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}} :1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:master {:override-deps {org.clojure/clojure {:mvn/version "1.11.1-master-SNAPSHOT"}}} :1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.0"}}}
:master {:override-deps {org.clojure/clojure {:mvn/version "1.12.0-master-SNAPSHOT"}}}
;; running tests/checks of various kinds: ;; running tests/checks of various kinds:
:test {:extra-paths ["test"] ; can also run clojure -X:test :test {:extra-paths ["test"] ; can also run clojure -X:test