-
Notifications
You must be signed in to change notification settings - Fork 65
chore: centralize graal 23 downstream updates #3674
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Args=--initialize-at-build-time=java.lang.annotation.Annotation,\ | ||
org.junit.experimental.categories.Category,\ | ||
org.junit.experimental.categories.CategoryValidator,\ | ||
org.junit.Ignore,\ | ||
org.junit.runner.RunWith,\ | ||
org.junit.runners.model.FrameworkField,\ | ||
org.junit.validator.AnnotationValidator,\ | ||
org.junit.vintage.engine.discovery.FilterableIgnoringRunnerDecorator | ||
Comment on lines
+2
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. q,, Is this only adding the junit configs because junit contains the common config between all the deps? It's been a while since my release, but I recall storage-nio required some custom configurations: https://github.com/googleapis/java-storage-nio/blob/97c3624ac7e375621d78c7eea10b00359d7971fd/google-cloud-nio/src/main/resources/META-INF/native-image/com/google/cloud/google-cloud-nio/native-image.properties#L7-L12 I think one missing from there is guava's There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the catch. I was not aware that changes in storage-nio were necessary as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added the relevant config and raise a PR to be merged once this one is released: googleapis/java-storage-nio#1559 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test in local that the GraalVM tests in downstream libraries still pass without the native-image.properties
in their repos?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a list of local test results in the description. I ended up further adjusting the configuration, so thanks!