Добавил стадию теста
Hedgehog_server/ServerMonitorBot/pipeline/head There was a failure building this commit Details

pull/31/head
L_DelOff 2023-11-20 19:52:32 +03:00
parent 0863650ddc
commit 56a74a8b49
1 changed files with 11 additions and 1 deletions

12
Jenkinsfile vendored
View File

@ -8,7 +8,17 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'mvn -B -DskipTests -X clean package'
sh 'mvn -B -DskipTests -X clean install'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
stage('Build docker') {
steps {
sh 'mvn test'
}
}
}