Files
timeline-server/Jenkinsfile
jiangh277 f828b5ccbb
All checks were successful
test/timeline-server/pipeline/head This commit looks good
test Jenkins
2025-12-24 14:56:09 +08:00

21 lines
349 B
Groovy

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