Skip to content

Commit

Permalink
update multi-version testing
Browse files Browse the repository at this point in the history
to match official matrix

Signed-off-by: Sean Corfield <[email protected]>
  • Loading branch information
seancorfield committed Oct 4, 2024
1 parent 69d466e commit 006901a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Changes not yet released
* Update most testing dependencies (and update a couple of tests to match).
* Drop support for Clojure 1.7.0. Test against 1.8, 1.9, 1.10, 1.11, and 1.12.
* Drop support for Clojure 1.7 & 1.8. Test against 1.9, 1.10, 1.11, and 1.12.

Changes in 0.7.12

Expand Down
3 changes: 1 addition & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;; You can run clojure.java.jdbc tests with: clj -A:test:runner
;; You can also specify an alias to select which version of Clojure to test
;; against: :1.8 :1.9 :1.10 :1.11 :1.12
;; against: :1.9 :1.10 :1.11 :1.12

{:paths ["src/main/clojure"]
:aliases {:test
Expand All @@ -17,7 +17,6 @@
org.xerial/sqlite-jdbc {:mvn/version "3.45.2.0"}
;; Note: Assumes Java 8; there's a .jre11 version as well
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.6.1.jre8"}}}
:1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}}
:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
Expand Down
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dbs="derby h2 hsqldb sqlite"
# Start with clean databases each time to avoid slowdown
rm -rf clojure_test_*

versions="1.8 1.9 1.10 1.11 1.12"
versions="1.9 1.10 1.11 1.12"
for v in $versions
do
TEST_DBS="$dbs $*" clj -M:test:runner:$v
Expand Down

0 comments on commit 006901a

Please sign in to comment.