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
we're using pluginverification task and noticed that even the report mention errors, the task don't fail if we specify the correct failure level, if the PLAIN verificationFormat is missing
it fails only if the ALL level is used
pluginVerification {
failureLevel = ALL
verificationReportsFormats = listOf(MARKDOWN)
the same build fails with
> Task :verifyPlugin FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':verifyPlugin'.
> SCHEDULED_FOR_REMOVAL_API_USAGES: Plugin uses API marked as scheduled for removal (ApiStatus.@ScheduledForRemoval). Check Plugin Verifier report for more details.
that is the correct expected output
Steps to reproduce
check out redhat-developer/intellij-kubernetes@5eea7ff ./gradlew verifyPlugin will not fail
change build.gradle.kts to use ALL as failureLevel and it will fail
or change verificationReportFormats to 'verificationReportsFormats = listOf(MARKDOWN, PLAIN)'
sbouchet
changed the title
verifyPlugin does not fails builds even if correct failureLevel applied
verifyPlugin does not fails builds if verificationReportsFormats does not include PLAIN reports
Feb 5, 2025
What happened?
we're using pluginverification task and noticed that even the report mention errors, the task don't fail if we specify the correct failure level, if the PLAIN verificationFormat is missing
it fails only if the ALL level is used
Relevant log output or stack trace
we're currently using
and build outuput is
but as soon as i change to
the same build fails with
that is the correct expected output
Steps to reproduce
check out redhat-developer/intellij-kubernetes@5eea7ff
./gradlew verifyPlugin
will not failchange build.gradle.kts to use ALL as failureLevel and it will fail
or change verificationReportFormats to 'verificationReportsFormats = listOf(MARKDOWN, PLAIN)'
Gradle IntelliJ Plugin version
2.2.1
Gradle version
8.5
Operating System
Linux
Link to build, i.e. failing GitHub Action job
redhat-developer/intellij-kubernetes#824
The text was updated successfully, but these errors were encountered: