2024-01-17 09:05:05 +00:00
|
|
|
pipeline {
|
|
|
|
|
agent any
|
|
|
|
|
stages {
|
|
|
|
|
stage('Gradle') {
|
|
|
|
|
steps {
|
2024-02-05 17:55:03 +00:00
|
|
|
sh './gradlew clean'
|
2024-01-17 09:05:05 +00:00
|
|
|
sh './gradlew build'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stage('Archive') {
|
|
|
|
|
steps {
|
|
|
|
|
archiveArtifacts artifacts: 'build/libs/', followSymlinks: false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stage('discord') {
|
|
|
|
|
steps {
|
|
|
|
|
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|