You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2022/06/04 16:26:24 UTC

[GitHub] [beam] damccorm opened a new issue, #20290: Java 11 Precommit failing tasks

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: github-unsubscribe@beam.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] damccorm commented on issue #20290: Java 11 Precommit failing tasks

Posted by GitBox <gi...@apache.org>.
damccorm commented on issue #20290:
URL: https://github.com/apache/beam/issues/20290#issuecomment-1146644960

   The following subtask(s) are associated with this issue: #20291, #20292, #20293, #20294


-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Java 11 Precommit failing tasks [beam]

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn closed issue #20290: Java 11 Precommit failing tasks
URL: https://github.com/apache/beam/issues/20290


-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org