Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
1528657021
commit
46736a9370
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -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....'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user