2024-08-04 19:52:30 +00:00
|
|
|
pipeline {
|
|
|
|
|
agent any
|
|
|
|
|
stages {
|
2026-08-01 11:32:03 +00:00
|
|
|
// stage('Gradle') {
|
|
|
|
|
// steps {
|
|
|
|
|
// sh '''
|
|
|
|
|
// set +x
|
|
|
|
|
// chmod +x zip.sh
|
|
|
|
|
// ./zip.sh
|
|
|
|
|
// '''
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2024-08-04 19:52:30 +00:00
|
|
|
stage('Archive') {
|
|
|
|
|
steps {
|
|
|
|
|
archiveArtifacts artifacts: 'Galaxy.zip', followSymlinks: false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stage('discord') {
|
|
|
|
|
steps {
|
|
|
|
|
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|