liang-springcloud-alibaba-s.../Jenkinsfile
liangjinglin bc7fdb8918
All checks were successful
gitea-Liang/pipeline/head This commit looks good
20250419 添加jenkinsfile
2025-04-20 00:02:15 +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'
}
}
}
}