Blackout/Jenkinsfile

19 lines
517 B
Plaintext
Raw Normal View History

2022-04-07 17:37:39 +00:00
pipeline {
agent any
stages {
stage("build") {
steps {
withGradle {
sh "./gradlew build --no-daemon"
}
}
}
}
post {
always {
archiveArtifacts artifacts: "build/libs/*-SNAPSHOT.jar", fingerprint: true
2022-05-13 03:54:16 +00:00
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.WEBHOOK_URL
2022-04-07 17:37:39 +00:00
cleanWs()
}
}
}