AltitudeAPI/Jenkinsfile

20 lines
567 B
Plaintext
Raw Normal View History

2023-12-30 10:30:48 +00:00
pipeline {
2023-12-30 11:16:13 +00:00
agent any
stages {
stage('Gradle') {
steps {
sh './gradlew build'
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: 'build/libs/', followSymlinks: false
}
}
stage('discord') {
steps {
2023-12-30 12:44:59 +00:00
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
2023-12-30 11:16:13 +00:00
}
}
2023-12-30 10:30:48 +00:00
}
}