fix quoting in pipeline groovy
Some checks failed
sgraves/cpp-build-system/pipeline/head Something is wrong with the build of this commit
sgraves/cpp-build-system_mac/pipeline/head This commit looks good

This commit is contained in:
2026-01-25 09:21:48 -06:00
parent fd77678378
commit 22dd35da0b
5 changed files with 57 additions and 15 deletions

View File

@@ -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
'''
}
}
}
}