fix quoting in pipeline groovy
This commit is contained in:
@@ -57,8 +57,16 @@ pipeline {
|
||||
stage('deliver') {
|
||||
steps {
|
||||
script {
|
||||
retryWithBackoff(3, 10) { sh 'scripts/deliver.sh /mnt/%PROJECT_NAME% "" aarch64' }
|
||||
retryWithBackoff(3, 10) { sh 'scripts/deliver.sh /mnt/%PROJECT_NAME% "" x86_64' }
|
||||
retryWithBackoff(3, 10) {
|
||||
sh '''
|
||||
scripts/deliver.sh /mnt/%PROJECT_NAME% "" aarch64
|
||||
'''
|
||||
}
|
||||
retryWithBackoff(3, 10) {
|
||||
sh '''
|
||||
scripts/deliver.sh /mnt/%PROJECT_NAME% "" x86_64
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user