test Jenkins
All checks were successful
test/timeline-server/pipeline/head This commit looks good

This commit is contained in:
jiangh277
2025-12-24 14:56:09 +08:00
parent 4c7d59f87b
commit f828b5ccbb

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'
}
}
}
}