liang-springcloud-alibaba-s.../Jenkinsfile
liangjinglin 0c42af6c83
All checks were successful
gitea-Liang/pipeline/head This commit looks good
20250423 jenkinsfile脚本调试 -1
2025-04-23 19:21:56 +08:00

22 lines
459 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)"'
}
}
}
}