File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : false
10
10
matrix :
11
11
os : [ windows, ubuntu, macos ]
12
- graal-java : [ 11 ]
12
+ graal-java : [ '11', '17' ]
13
13
test : [ test-native, test-native-sci ]
14
14
clojure-version : [ '1.11' ]
15
15
36
36
- name : Install GraalVM
37
37
uses : graalvm/setup-graalvm@v1
38
38
with :
39
- version : ' 22.1 .0'
39
+ version : ' 22.2 .0'
40
40
java-version : ${{ matrix.graal-java }}
41
41
components : ' native-image'
42
42
github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Automated testing is setup using GraalVM v22 JDK11.
20
20
* Clojure v1.10.1.697 or above for `clojure` command
21
21
** Note that rewrite-clj v1 itself supports Clojure v1.8 and above
22
22
* Babashka v0.3.7 or above
23
- * GraalVM v22.1 .0 JDK 11 (if you want to run GraalVM native image tests)
23
+ * GraalVM v22.2 .0 JDK 11 or 17 (if you want to run GraalVM native image tests)
24
24
25
25
=== Windows Notes
26
26
Original file line number Diff line number Diff line change 18
18
(find-graal-prog (if (= :win (os/get-os )) " gu.cmd" " gu" )))
19
19
20
20
(defn- assert-min-native-image-version [native-image-exe]
21
- (let [min-major 21
21
+ (let [min-major 22
22
22
version-out (->> (shell/command {:out :string } native-image-exe " --version" )
23
23
:out )
24
24
actual-major (->> version-out
You can’t perform that action at this time.
0 commit comments