feat add Jenkinsfile

This commit is contained in:
tqcq 2024-07-18 17:57:55 +08:00 committed by tqcq
parent fe489a0af4
commit e12c1a6ea8

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}