更新 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:31:16 +08:00
parent 0a3adf70b4
commit 0bc42b281a

View File

@@ -3,17 +3,17 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh 'echo build' cmd 'echo build'
} }
} }
stage('Test'){ stage('Test'){
steps { steps {
sh 'echo test' cmd 'echo test'
} }
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
sh 'echo publish' cmd 'echo publish'
} }
} }
} }