Skip to content

Commit

Permalink
Allow list log lines for helidon
Browse files Browse the repository at this point in the history
The helidon native-image build is being driven by the
helidon-maven-plugin which doesn't allow for unlocking certain
parameters which the maven-plugin itself is adding. Therefore, allow
list the newly produced warnings for now.
  • Loading branch information
jerboaa committed Sep 8, 2023
1 parent 88a7a8f commit 851bdc5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ public Pattern[] get(boolean inContainer) {
@Override
public Pattern[] get(boolean inContainer) {
return new Pattern[]{
// Experimental options not being unlocked, produces warnings, yet it's driven by the helidon-maven-plugin
Pattern.compile(".*The option '.*' is experimental and must be enabled via '-H:\\+UnlockExperimentalVMOptions' in the future.*"),
Pattern.compile(".*Please re-evaluate whether any experimental option is required, and either remove or unlock it.*"),
// Unused argument on new Graal
Pattern.compile(".*Ignoring server-mode native-image argument --no-server.*"),
// --allow-incomplete-classpath not available in new GraalVM https://github.com/Karm/mandrel-integration-tests/issues/76
Expand Down

0 comments on commit 851bdc5

Please sign in to comment.