Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.graalvm.nativeimage:svm from 22.3.0 to 23.0.1 #455

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
pull_request: # build all PRs

env:
graalvm_version: '22.3.0'
graalvm_version: '22.3.3'

jobs:
build:
Expand All @@ -38,6 +38,7 @@ jobs:
BRANCH: ${{ github.head_ref }}
RUN_IT: true
OKTA_ITS_TIMEOUT: PT45s
USE_NATIVE_IMAGE_JAVA_PLATFORM_MODULE_SYSTEM: false
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:
REPO_SLUG: ${{ github.repository }}
BRANCH: ${{ github.head_ref }}
RUN_IT: true
USE_NATIVE_IMAGE_JAVA_PLATFORM_MODULE_SYSTEM: false

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=22.3.r17-grl
java=22.3.3.r17-grl
5 changes: 3 additions & 2 deletions cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>svm</artifactId>
<version>22.3.0</version>
<version>23.0.1</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -168,6 +168,7 @@
<buildArgs>
<arg>--no-fallback</arg>
<arg>--no-server</arg>
<arg>--add-exports=jdk.internal.vm.compiler/org.graalvm.compiler.options=ALL-UNNAMED</arg>
<arg>--enable-url-protocols=http,https</arg>
<arg>-H:ResourceConfigurationFiles=../src/main/graalvm/resource-config.json</arg>
<arg>-H:ReflectionConfigurationFiles=../src/main/graalvm/reflect-config.json,../src/main/graalvm/okta-sdk-reflect-config.json</arg>
Expand Down Expand Up @@ -315,4 +316,4 @@
</properties>
</profile>
</profiles>
</project>
</project>
Loading