增加jenkinsfile
All checks were successful
Liang-gitea/liang-spring-service/pipeline/head This commit looks good

This commit is contained in:
liangjinglin 2024-12-18 22:50:52 +08:00
parent db48da5c6c
commit 2f2077e796

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}