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

24 lines
623 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-23 11:27:15 +00:00
sh 'liang-springcloud-alibaba-goods-service/target'
sh 'cp ~/liang-springcloud-alibaba-goods-service-1.0-SNAPSHOT.jar /opt/service'
2025-04-19 16:02:15 +00:00
}
}
}
}