make the template

This commit is contained in:
riyadgh 2020-02-14 04:34:25 -05:00
parent 2ac8d34dd7
commit e542f07c2a

7
Jenkinsfile vendored
View file

@ -4,17 +4,17 @@ pipeline {
stage('Build') { stage('Build') {
agent { agent {
docker { docker {
image ''
} }
} }
steps { steps {
sh ''
} }
} }
stage('Test') { stage('Test') {
agent { agent {
docker { docker {
image ''
} }
} }
steps { steps {
@ -22,7 +22,6 @@ pipeline {
} }
post { post {
always { always {
junit ''
} }
} }
} }