DataLock/Jenkinsfile

22 lines
608 B
Plaintext
Raw Permalink Normal View History

2025-06-28 02:40:23 +00:00
pipeline {
agent any
stages {
stage('Gradle') {
steps {
2025-06-28 02:45:07 +00:00
sh 'chmod +x ./gradlew'
sh './gradlew build'
2025-06-28 02:40:23 +00:00
}
}
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
}
}
}
}