20250419 添加jenkinsfile
All checks were successful
gitea-Liang/pipeline/head This commit looks good

This commit is contained in:
liangjinglin 2025-04-20 00:02:15 +08:00
parent d3c86bfbdf
commit bc7fdb8918

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
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'
}
}
}
}