add jenkins
All checks were successful
git/CI_test/pipeline/head This commit looks good

This commit is contained in:
ubuntu
2025-04-02 15:14:22 +08:00
parent 97620abf68
commit e8e3377e90

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