mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-28 21:25:44 +01:00
Add github commit statuses
This commit is contained in:
parent
91c4733038
commit
db765aab1b
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -42,7 +42,7 @@ pipeline {
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: '**/target/*.jar', excludes: '*-noshade.jar', fingerprint: true
|
||||
archiveArtifacts artifacts: '**/target/*.jar', excludes: '**/target/*-noshade.jar', fingerprint: true
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -56,7 +56,7 @@ pipeline {
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
|
||||
archiveArtifacts artifacts: '**/target/*.jar', excludes: '**/target/*-noshade.jar', fingerprint: true
|
||||
step([
|
||||
$class: 'JavadocArchiver',
|
||||
javadocDir: 'target/apidocs',
|
||||
@ -75,5 +75,11 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
success {
|
||||
githubNotify description: 'The jenkins build was successful', status: 'SUCCESS'
|
||||
}
|
||||
failure {
|
||||
githubNotify description: 'The jenkins build failed', status: 'FAILURE'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user