fix:Jenkinsfile更新

This commit is contained in:
orgin 2023-05-11 16:44:40 +08:00
parent 627dad93af
commit 30e5c8b275

4
Jenkinsfile vendored
View File

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