WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 45492df

Browse files
committed
test against jdk 25
Signed-off-by: Sean Corfield <[email protected]>
1 parent 26886fc commit 45492df

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test-and-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
strategy:
4141
matrix:
42-
java: [ '11', '17', '21' ]
42+
java: [ '11', '17', '21', '25' ]
4343
steps:
4444
- uses: actions/checkout@v5
4545
- uses: actions/setup-java@v5

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: [ '11', '17', '21' ]
10+
java: [ '11', '17', '21', '25' ]
1111
steps:
1212
- uses: actions/checkout@v5
1313
- uses: actions/setup-java@v5

bb.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; all tasks that run tests can also accept:
22
;; all - run tests against all supported Clojure versions
33
;; 1.<N> - run only against the specified Clojure version (defaults to 1.8)
4-
;; jdk11/jdk17/jdk21/jdk24 - indicate which JDK you are using (defaults to jdk24)
4+
;; jdk11/jdk17/jdk21/jdk25 - indicate which JDK you are using (defaults to jdk25)
55
{:tasks
66
{:requires [[clojure.string :as str]]
77

@@ -15,7 +15,7 @@
1515
*command-line-args*))
1616
jdk (or base-jdk
1717
;; sean's local default:
18-
"jdk24")]
18+
"jdk25")]
1919
(doseq [v (if all? ["1.8" "1.9" "1.10" "1.11" "1.12"] versions)]
2020
(println "\nTesting Clojure" v)
2121
(shell "clojure"

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
:jdk11 {}
2323
:jdk17 {}
2424
:jdk21 {}
25-
:jdk24 {}}}
25+
:jdk25 {}}}

0 commit comments

Comments
 (0)