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

24 lines
616 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)"'
cd liang-springcloud-alibaba-goods-service/target
cp ~/liang-springcloud-alibaba-goods-service-1.0-SNAPSHOT.jar /opt/service
}
}
}
}