fuzzy-controller/Jenkinsfile

31 lines
703 B
Plaintext
Raw Permalink Normal View History

2025-02-17 15:21:47 +04:00
pipeline {
agent any
2025-02-17 16:43:45 +04:00
tools {
jdk 'jdk-21'
}
2025-02-17 15:21:47 +04:00
stages {
stage('Build') {
steps {
script {
sh "sh ./gradlew clean build"
}
}
}
stage('Deploy') {
steps {
script {
2025-02-18 10:54:36 +04:00
sh "bash deploy/nio17.sh &"
2025-02-17 15:21:47 +04:00
}
}
}
}
post {
always {
script {
if (currentBuild.currentResult == 'FAILURE') {
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "a.romanov@ulstu.ru", sendToIndividuals: true])
}
}
}
}
}