liang-spring-service/Jenkinsfile
liangjinglin 1d5c7fd3d7
All checks were successful
Liang-gitea/liang-spring-service/pipeline/head This commit looks good
liang-spring-service/pipeline/head This commit looks good
构建jar包
2024-12-25 22:53:34 +08:00

21 lines
404 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
sh "mvn clean package -DskipTests=true"
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}