fix quoting in pipeline groovy
This commit is contained in:
@@ -150,7 +150,13 @@ pipeline {
|
||||
|
||||
stage('macos_x86_64_shared') {
|
||||
steps {
|
||||
script { retryWithBackoff(2, 5) { sh 'scripts/test_unix.sh shared "" x86_64' } }
|
||||
script {
|
||||
retryWithBackoff(2, 5) {
|
||||
sh '''
|
||||
scripts/test_unix.sh shared "" x86_64
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('macos_x86_64_shared_crypto') {
|
||||
@@ -190,7 +196,13 @@ pipeline {
|
||||
}
|
||||
stage('macos_x86_64_static') {
|
||||
steps {
|
||||
script { retryWithBackoff(2, 5) { sh 'scripts/test_unix.sh static "" x86_64' } }
|
||||
script {
|
||||
retryWithBackoff(2, 5) {
|
||||
sh '''
|
||||
scripts/test_unix.sh static "" x86_64
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('macos_x86_64_static_crypto') {
|
||||
|
||||
Reference in New Issue
Block a user