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

Ignore warning about --allow-incomplete-classpath in helidon quickstart #77

Merged
merged 2 commits into from
Mar 11, 2022
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/builder_image_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ jobs:
env:
MAVEN_OPTS: -Xmx1g
run: |
sudo apt install gdb
sudo apt-get update -y
sudo apt-get install -y gdb
pushd ts
mvn clean verify -Ptestsuite-builder-image -Dquarkus.version=${{ matrix.quarkus-version }} -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel:${{ matrix.mandrel-builder-image }}
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/local_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ jobs:
env:
MAVEN_OPTS: -Xmx1g
run: |
sudo apt install gdb
sudo apt-get update -y
sudo apt-get install -y gdb
export JAVA_HOME=${{ github.workspace }}/${{ matrix.mandrel-version }}
export GRAALVM_HOME="${JAVA_HOME}"
export PATH="${JAVA_HOME}/bin:$PATH"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,13 @@ public enum WhitelistLogLines {

HELIDON_QUICKSTART_SE(new Pattern[]{
// Unused argument on new Graal
Pattern.compile(".*Ignoring server-mode native-image argument --no-server.*")
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
Pattern.compile(".*Using a deprecated option --allow-incomplete-classpath from " +
"jar:file:.*mandrel-integration-tests/apps/helidon-quickstart-se/target/libs/helidon-webserver-2.2.2.jar" +
"!/META-INF/native-image/io.helidon.webserver/helidon-webserver/native-image.properties. " +
"Allowing an incomplete classpath is now the default. " +
"Use --link-at-build-time to report linking errors at image build time for a class or package.*")
}),

QUARKUS_BUILDER_IMAGE_ENCODING(new Pattern[]{
Expand Down