Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xpepper/de7c88822964b47f9caa34fca1343e87 to your computer and use it in GitHub Desktop.
Save xpepper/de7c88822964b47f9caa34fca1343e87 to your computer and use it in GitHub Desktop.
post {
always {
archiveArtifacts artifacts: '**/build/libs/*.war', onlyIfSuccessful: true
jacoco(
classPattern: '**/classes/kotlin/main',
sourcePattern: '**/src/main/kotlin',
sourceInclusionPattern: '**/*.kt'
)
}
success {
slackSend(
channel: "3ds_2_issuer",
color: 'good',
message: "*${env.JOB_NAME}* #${env.BUILD_NUMBER} passed (${env.BUILD_URL}) :thumbsup:"
)
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment