liang-spring-service/Jenkinsfile

20 lines
348 B
Plaintext
Raw Normal View History

2024-12-18 14:50:52 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}