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

22 lines
459 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'
2025-04-23 11:21:56 +00:00
sh 'echo "当前目录路径: $(pwd)"'
2025-04-19 16:02:15 +00:00
}
}
}
}