liang-springcloud-alibaba-s.../Jenkinsfile
liangjinglin bbd8e9a05c
Some checks failed
gitea-Liang/pipeline/head There was a failure building this commit
20250423 jenkinsfile脚本调试 -3
2025-04-23 19:27:15 +08:00

24 lines
623 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'
sh 'echo "当前目录路径: $(pwd)"'
sh 'liang-springcloud-alibaba-goods-service/target'
sh 'cp ~/liang-springcloud-alibaba-goods-service-1.0-SNAPSHOT.jar /opt/service'
}
}
}
}