You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "Beam JIRA Bot (Jira)" <ji...@apache.org> on 2020/11/19 17:12:00 UTC

[jira] [Commented] (BEAM-10090) Java 11 Precommit failing tasks

    [ https://issues.apache.org/jira/browse/BEAM-10090?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17235600#comment-17235600 ] 

Beam JIRA Bot commented on BEAM-10090:
--------------------------------------

This issue is P2 but has been unassigned without any comment for 60 days so it has been labeled "stale-P2". If this issue is still affecting you, we care! Please comment and remove the label. Otherwise, in 14 days the issue will be moved to P3.

Please see https://beam.apache.org/contribute/jira-priorities/ for a detailed explanation of what these priorities mean.


> Java 11 Precommit failing tasks
> -------------------------------
>
>                 Key: BEAM-10090
>                 URL: https://issues.apache.org/jira/browse/BEAM-10090
>             Project: Beam
>          Issue Type: Improvement
>          Components: build-system
>            Reporter: Pawel Pasterz
>            Priority: P2
>              Labels: stale-P2
>          Time Spent: 2.5h
>  Remaining Estimate: 0h
>
> 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/]
> Groovy script
> {code:groovy}
> 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')
>     }
>   }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)