Skip to content

Commit 25d19dc

Browse files
authored
Update CI to include Java 17 and 19
Java 17 is LTS and Java 19 is the latest regular release.
1 parent 9648750 commit 25d19dc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
clojure: lambdaisland/[email protected].6
4+
clojure: lambdaisland/[email protected].8
55

66
commands:
77
checkout_and_run:
@@ -27,8 +27,16 @@ jobs:
2727
java-16:
2828
executor: clojure/openjdk16
2929
steps: [{checkout_and_run: {}}]
30+
java-17:
31+
executor: clojure/openjdk17
32+
steps: [{checkout_and_run: {}}]
33+
java-19:
34+
executor: clojure/openjdk19
35+
steps: [{checkout_and_run: {}}]
3036

3137
workflows:
3238
kaocha_test:
3339
jobs:
3440
- java-16
41+
- java-17
42+
- java-19

0 commit comments

Comments
 (0)