Commit 680fcd6b by Administrator

Added Jenkinsfile

parent 1fac83c3
...@@ -4,6 +4,7 @@ pipeline { ...@@ -4,6 +4,7 @@ pipeline {
image 'maven:3-alpine' image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2' args '-v /root/.m2:/root/.m2'
} }
} }
stages { stages {
stage('Build') { stage('Build') {
...@@ -18,7 +19,14 @@ pipeline { ...@@ -18,7 +19,14 @@ pipeline {
post { post {
always { always {
junit 'target/surefire-reports/*.xml' junit 'target/surefire-reports/*.xml'
} }
}
}
stage('Put out') {
steps {
sh 'll'
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment