damccorm opened a new issue, #20290: URL: https://github.com/apache/beam/issues/20290
This is the aggregate for all failing tasks in Java 11 Precommit job Jenkins job URL [https://builds.apache.org/job/beam_PreCommit_Java11_Phrase/11/](https://builds.apache.org/job/beam_PreCommit_Java11_Phrase/11/) Groovy script ``` import PrecommitJobBuilder import CommonJobProperties as properties PrecommitJobBuilder builder = new PrecommitJobBuilder( scope: this, nameBase: 'Java11', gradleTask: ':javaPreCommit', commitTriggering: false, gradleSwitches: [ '-Pdockerfile=Dockerfile-java11', '-PdisableSpotlessCheck=true', '-PcompileAndRunTestsWithJava11', "-Pjava11Home=${properties.JAVA_11_HOME}", '--info' // for debug purposes ], // spotless checked in separate pre-commit triggerPathPatterns: [ '^model/.*$', '^sdks/java/.*$', '^runners/.*$', '^examples/java/.*$', '^examples/kotlin/.*$', '^release/.*$', ], excludePathPatterns: [ '^sdks/java/extensions/sql/.*$' ] ) builder.build { publishers { archiveJunit('**/build/test-results/**/*.xml') recordIssues { tools { errorProne() java() checkStyle { pattern('**/build/reports/checkstyle/*.xml') } configure { node -> node / 'spotBugs' << 'io.jenkins.plugins.analysis.warnings.SpotBugs' { pattern('**/build/reports/spotbugs/*.xml') } } } enabledForFailure(true) } jacocoCodeCoverage { execPattern('**/build/jacoco/*.exec') } } } ``` Imported from Jira [BEAM-10090](https://issues.apache.org/jira/browse/BEAM-10090). Original Jira may contain additional context. Reported by: pawel.pasterz. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
