liang-springcloud-alibaba-s.../Jenkinsfile

21 lines
404 B
Plaintext
Raw Normal View History

2025-04-19 16:02:15 +00:00
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'
}
}
}
}