更新 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 {
stage('Build') {
steps {
cmd 'echo build'
bat 'echo build'
}
}
stage('Test'){
steps {
cmd 'echo test'
bat 'echo test'
}
}
stage('Deploy') {
steps {
cmd 'echo publish'
bat 'echo publish'
}
}
}