File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 17
17
fail-fast : false
18
18
matrix :
19
19
os : [ windows, ubuntu, macos ]
20
- java-version : [ '17.0.8', '20.0.2 ' ]
20
+ java-version : [ '21 ' ]
21
21
test : [ native, native-sci ]
22
22
clojure-version : [ '1.11' ]
23
23
Original file line number Diff line number Diff line change 114
114
115
115
116
116
:sci-test {:extra-paths [" target/generated/sci-test/src" ]
117
- :extra-deps {lread/sci-test_ {:git/url " https://github.com/lread/sci-test.git"
118
- :sha " 78e098353d5cce878b8aec1767ae290a3d2fcee9 " }}}
117
+ :extra-deps {lread/sci-test {:git/url " https://github.com/lread/sci-test.git"
118
+ :sha " 4323578406848180424a801018047fe859e72c4b " }}}
119
119
120
120
:native-test {:extra-paths [" target/generated/graal" ]}
121
121
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ We make use of planck for cljs bootstrap (aka cljs self-hosted) testing.
12
12
Planck is currently not available for Windows.
13
13
14
14
We test that rewrite-clj operates as expected when natively compile via GraalVM.
15
- Automated testing is setup using GraalVM JDK 17 and JDK 20 .
15
+ Automated testing is setup using GraalVM JDK 21 .
16
16
At this time we only test against the Community Edition.
17
17
18
18
== Prerequisites
@@ -21,7 +21,7 @@ At this time we only test against the Community Edition.
21
21
* Clojure v1.10.1.697 or above for `clojure` command
22
22
** Note that rewrite-clj v1 itself supports Clojure v1.8 and above
23
23
* Babashka v0.3.7 or above
24
- * Current release of GraalVM JDK 17 or 20 , if you want to run GraalVM native image tests
24
+ * Current release of GraalVM JDK 21 , if you want to run GraalVM native image tests
25
25
26
26
=== Windows Notes
27
27
Original file line number Diff line number Diff line change 19
19
version-out (->> (shell/command {:err :string } java-exe " -version" )
20
20
:err )
21
21
[actual-graal-major actual-jdk-major] (->> version-out
22
- (re-find #"(?i)GraalVM(?: CE)? (\d +)\. . *\( build (\d +)\. " )
22
+ (re-find #"(?i)GraalVM(?: CE)? (\d +). *\( build (\d +)" )
23
23
rest
24
24
(map parse-long))]
25
25
(cond
You can’t perform that action at this time.
0 commit comments