Plex/Jenkinsfile

22 lines
636 B
Plaintext
Raw Normal View History

2022-04-06 23:14:44 -05:00
pipeline {
agent any
stages {
2022-04-07 00:25:03 -05:00
stage("build") {
2022-04-06 23:14:44 -05:00
steps {
2022-04-07 00:05:15 -05:00
withGradle {
2022-04-07 00:25:03 -05:00
sh "./gradlew build javadoc publish --no-daemon"
2022-04-07 00:05:15 -05:00
}
2022-04-06 23:14:44 -05:00
}
}
}
post {
always {
2022-04-07 00:25:03 -05:00
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true
2022-04-07 00:26:24 -05:00
javadoc javadocDir "build/docs/javadoc" {
2022-04-07 00:25:03 -05:00
javadoc keepAll false
}
2022-04-07 00:01:06 -05:00
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL
2022-04-06 23:14:44 -05:00
deleteWs()
}
}
}