Skip to content

Commit

Permalink
Publish build results from Jenkins to GitHub
Browse files Browse the repository at this point in the history
This initial step is just about how to get the results (e.g. compiler
warnings) to GitHub. In a later stage, those can the be further
configured to have the build fail if it would introduce additional
warnings.
  • Loading branch information
ptziegler committed Nov 19, 2024
1 parent 5dd09e6 commit 9a1e2ea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ BRANCH_NAME=${env.BRANCH_NAME}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
discoverGitReferenceBuild referenceJob: 'build-classic/master'
recordIssues publishAllIssues: true, tools: [java(), mavenConsole(), javaDoc()]
}

Expand Down

0 comments on commit 9a1e2ea

Please sign in to comment.