Skip to content

Commit d050c28

Browse files
committed
Upgrade to GraalVM 25
1 parent 858b5cd commit d050c28

25 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/microservices-micronaut-hello-rest-gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: graalvm/setup-graalvm@v1
2020
with:
21-
java-version: '21'
21+
java-version: '25'
2222
distribution: 'graalvm'
2323
github-token: ${{ secrets.GITHUB_TOKEN }}
2424
cache: 'gradle'

.github/workflows/native-build-tools-gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '21'
25+
java-version: '25'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
- name: Run 'native-build-tools-gradle'

.github/workflows/native-image-include-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '21'
25+
java-version: '25'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
native-image-job-reports: 'true'

.github/workflows/polyglot-chat-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '21'
25+
java-version: '25'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
cache: 'gradle'

.github/workflows/polyglot-debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: graalvm/setup-graalvm@v1
2424
with:
25-
java-version: '21'
25+
java-version: '25'
2626
distribution: 'graalvm'
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
cache: 'maven'

compiler/java-stream-benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Licensed under the Universal Permissive License v 1.0 as shown at http://oss.ora
2222
<properties>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<jmh.version>1.37</jmh.version>
25-
<javac.target>21</javac.target>
25+
<javac.target>25</javac.target>
2626
<uberjar.name>benchmarks</uberjar.name>
2727
</properties>
2828

native-image/benchmark/jmh/binary-tree/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<!-- JMH version to use with this project -->
1414
<jmh.version>1.35</jmh.version>
1515
<!-- Java source/target to use for compilation -->
16-
<java.version>21</java.version>
17-
<javac.target>21</javac.target>
16+
<java.version>25</java.version>
17+
<javac.target>25</javac.target>
1818
<!-- Name of the benchmark Uber-JAR to generate -->
1919
<uberjar.name>benchmarks-binary-tree</uberjar.name>
2020
<!-- Version of the GraalVM Build tools to use -->

native-image/build-java-modules/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13-
<maven.compiler.source>21</maven.compiler.source>
14-
<maven.compiler.target>21</maven.compiler.target>
13+
<maven.compiler.source>25</maven.compiler.source>
14+
<maven.compiler.target>25</maven.compiler.target>
1515
</properties>
1616

1717
<build>

native-image/build-with-js-embedded/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13-
<maven.compiler.source>21</maven.compiler.source>
14-
<maven.compiler.target>21</maven.compiler.target>
13+
<maven.compiler.source>25</maven.compiler.source>
14+
<maven.compiler.target>25</maven.compiler.target>
1515
<graalvm.polyglot.version>25.0.0</graalvm.polyglot.version>
1616
<native.maven.plugin.version>0.11.0</native.maven.plugin.version>
1717
</properties>

native-image/clouds/native-oci-cloud-shell/README-Cloud-Shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Oracle GraalVM is available for use on Oracle Cloud Infrastructure (OCI) at no a
1212

1313
[Cloud Shell](https://www.oracle.com/devops/cloud-shell/) is a free-to-use browser-based terminal accessible from the Oracle Cloud Console. It provides access to a Linux shell with preinstalled developer tools and a pre-authenticated OCI CLI. You can use the shell to interact with OCI resources, follow labs and tutorials, and quickly run utility commands.
1414

15-
Oracle GraalVM for JDK 17 (with Native Image) is preinstalled in Cloud Shell, so you don’t have to install and configure a development machine to get started.
15+
Oracle GraalVM 25 (with Native Image) is preinstalled in Cloud Shell, so you don’t have to install and configure a development machine to get started.
1616

1717
## Step 1: Launch Cloud Shell
1818

0 commit comments

Comments
 (0)