Skip to content

Commit b552d76

Browse files
authored
test & ci: bump deps (#374)
* test: native: turf deprecated option Responding to Graal native-image output of: Warning: Using a deprecated option --report-unsupported-elements-at-runtime from command line. The option is deprecated and will be removed in the future. The use of unsupported elements is always reported at run time. * ci: bump graalvm to version 24 * ci: bump unit text matrix jdk23->jdk24 * test & dev: bump deps * test-libs: bump antq * ci: oops, looks like temurin jdk24 not out yet
1 parent 7713ff8 commit b552d76

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/native-image-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ windows, ubuntu, macos ]
20-
java-version: [ '23.0.2' ]
20+
java-version: [ '24' ]
2121
test: [ native, native-sci ]
2222
clojure-version: [ '1.12' ]
2323

deps.edn

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
{;; for disabling the official compiler
3737
:classpath-overrides {org.clojure/clojure nil}
3838
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.0-9"}
39-
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.2.1"}}
39+
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.2.2"}}
4040
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
4141

4242
:nrepl/jvm
@@ -168,7 +168,7 @@
168168
;;
169169
;; Maintenance support
170170
;;
171-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1269"}
171+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1276"}
172172
org.slf4j/slf4j-simple {:mvn/version "2.0.17"} ;; to rid ourselves of logger warnings
173173
}
174174
:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}

doc/02-developer-guide.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We make use of planck for cljs bootstrap (aka cljs self-hosted) testing.
1212
Planck is currently not available for Windows.
1313

1414
We test that rewrite-clj operates as expected when natively compile via GraalVM.
15-
Automated testing is setup using GraalVM for JDK 23.
15+
Automated testing is setup using GraalVM for JDK 24.
1616
At this time we only test against the Community Edition.
1717

1818
== Prerequisites
@@ -21,7 +21,7 @@ At this time we only test against the Community Edition.
2121
* Clojure v1.10.1.697 or above for `clojure` command
2222
** Note that rewrite-clj v1 itself supports Clojure v1.8 and above
2323
* Babashka v0.3.7 or above
24-
* Current release of GraalVM for JDK 23, if you want to run GraalVM native image tests
24+
* Current release of GraalVM for JDK 24, if you want to run GraalVM native image tests
2525

2626
=== Windows Notes
2727

script/helper/graal.clj

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@
9797
(str "-H:ReflectionConfigurationFiles=" graal-reflection-fname))
9898
"--verbose"
9999
"--no-fallback"
100-
"--report-unsupported-elements-at-runtime"
101100
"-cp" (str classpath java.io.File/pathSeparator "classes")
102101
(str "-J-Xmx" native-image-xmx)
103102
entry-class]

script/test_libs.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@
293293
:show-deps-fn lein-deps-tree
294294
:test-cmds ["lein kaocha"]}
295295
{:name "antq"
296-
:version "2.11.1269"
296+
:version "2.11.1276"
297297
:platforms [:clj]
298298
:github-release {:repo "liquidz/antq"}
299299
:patch-fn deps-edn-v1-patch

0 commit comments

Comments
 (0)