Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
1528657021
commit
46736a9370
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -1,9 +1,20 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Build test code') {
|
stage('Build') {
|
||||||
steps {
|
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