Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Jędrzej Psztur 2021-12-03 17:55:07 +01:00
parent 1528657021
commit 46736a9370

15
Jenkinsfile vendored
View File

@ -1,9 +1,20 @@
pipeline {
agent any
stages {
stage('Build test code') {
stage('Build') {
steps {
sh 'mvn clean install -DskipTests'
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}