Skip to content

Commit 006901a

Browse files
committed
update multi-version testing
to match official matrix Signed-off-by: Sean Corfield <[email protected]>
1 parent 69d466e commit 006901a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Changes not yet released
22
* Update most testing dependencies (and update a couple of tests to match).
3-
* Drop support for Clojure 1.7.0. Test against 1.8, 1.9, 1.10, 1.11, and 1.12.
3+
* Drop support for Clojure 1.7 & 1.8. Test against 1.9, 1.10, 1.11, and 1.12.
44

55
Changes in 0.7.12
66

Diff for: deps.edn

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;; You can run clojure.java.jdbc tests with: clj -A:test:runner
22
;; You can also specify an alias to select which version of Clojure to test
3-
;; against: :1.8 :1.9 :1.10 :1.11 :1.12
3+
;; against: :1.9 :1.10 :1.11 :1.12
44

55
{:paths ["src/main/clojure"]
66
:aliases {:test
@@ -17,7 +17,6 @@
1717
org.xerial/sqlite-jdbc {:mvn/version "3.45.2.0"}
1818
;; Note: Assumes Java 8; there's a .jre11 version as well
1919
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.6.1.jre8"}}}
20-
:1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}}
2120
:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
2221
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
2322
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}

Diff for: run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dbs="derby h2 hsqldb sqlite"
4444
# Start with clean databases each time to avoid slowdown
4545
rm -rf clojure_test_*
4646

47-
versions="1.8 1.9 1.10 1.11 1.12"
47+
versions="1.9 1.10 1.11 1.12"
4848
for v in $versions
4949
do
5050
TEST_DBS="$dbs $*" clj -M:test:runner:$v

0 commit comments

Comments
 (0)