You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: The USE_NATIVE_IMAGE_JAVA_PLATFORM_MODULE_SYSTEM environment variable is deprecated and might be removed in a future release. Please refer to the GraalVM release notes.
These tests started failing because of the GraalVM deprecation mentioned above. This was fixed by Paketo in paketo-buildpacks/native-image#273. Before we could get green builds from this fix, the tests started failing because AOT-generated code is causing compiler deprecation warnings in generated BeanDefinition classes:
/tmp/gradle-17837136993385756809/build/generated/aotSources/org/springframework/boot/autoconfigure/task/TaskExecutorConfigurations__BeanDefinitions.java:32: warning: [removal] TaskExecutorBuilder in org.springframework.boot.task has been deprecated and marked for removal
The Gradle integration tests generally fail when there are deprecation warnings in the build output, but we selectively ignore some deprecation warnings that we have no control over. It might be possible to selectively ignore these deprecations, or we might have to ignore all deprecations for this test.
The failures began on July 7 (3.0.x, 3.1.x, 3.2.x).
The text was updated successfully, but these errors were encountered: