fix:Jenkinsfile更新

This commit is contained in:
orgin 2023-05-11 16:29:02 +08:00
parent fb03953d2d
commit 627dad93af

4
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
stages { stages {
stage('Stop') { stage('Stop') {
steps { steps {
sh './var/lib/jenkins/workspace/stop.sh' sh 'sh /var/lib/jenkins/workspace/stop.sh'
} }
} }
stage('Build') { stage('Build') {
@ -13,7 +13,7 @@ pipeline {
} }
stage('Start'){ stage('Start'){
steps { steps {
sh './var/lib/jenkins/workspace/start.sh' sh 'sh /var/lib/jenkins/workspace/start.sh'
} }
} }
// stage('Deploy') { // stage('Deploy') {