添加 jenkinsfile
Some checks failed
BeijingMediaOfficialWebsite-ZhaoJian/BeijingMediaOfficialWebsite-ZhaoJian/pipeline/head There was a failure building this commit

This commit is contained in:
2025-12-27 01:22:23 +08:00
parent 6b2d22812a
commit 0a3adf70b4

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