更新 jenkinsfile

This commit is contained in:
2025-12-27 07:28:38 +08:00
parent 0bc42b281a
commit 3a837da8af

View File

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