liang-spring-service/Jenkinsfile
liangjinglin 2f2077e796
All checks were successful
Liang-gitea/liang-spring-service/pipeline/head This commit looks good
增加jenkinsfile
2024-12-18 22:50:52 +08:00

20 lines
348 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}