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

This commit is contained in:
2023-11-20 19:52:32 +03:00
parent 0863650ddc
commit 56a74a8b49

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'
}
}
}