fix quotes
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 10:17:54 -06:00
parent f3fe8fb253
commit 046bedad89
5 changed files with 10 additions and 10 deletions

View File

@@ -153,7 +153,7 @@ pipeline {
script {
retryWithBackoff(2, 5) {
sh '''
scripts/test_unix.sh shared "" x86_64
scripts/test_unix.sh shared '' x86_64
'''
}
}
@@ -199,7 +199,7 @@ pipeline {
script {
retryWithBackoff(2, 5) {
sh '''
scripts/test_unix.sh static "" x86_64
scripts/test_unix.sh static '' x86_64
'''
}
}

View File

@@ -47,7 +47,7 @@ pipeline {
script {
retryWithBackoff(2, 5) {
bat '''
scripts\\test_msys2.cmd shared "" x86_64
scripts\\test_msys2.cmd shared '' x86_64
'''
}
}

View File

@@ -55,7 +55,7 @@ pipeline {
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh' }
retryWithBackoff(2, 5) {
sh '''
scripts/run_tests.sh "" "" "" "" 1 1
scripts/run_tests.sh '' '' '' '' 1 1
'''
}
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' }
@@ -68,7 +68,7 @@ pipeline {
script {
retryWithBackoff(2, 5) {
sh '''
scripts/run_tests.sh "" "" "" "" 1 1
scripts/run_tests.sh '' '' '' '' 1 1
'''
}
}
@@ -88,12 +88,12 @@ pipeline {
script {
retryWithBackoff(3, 10) {
sh '''
scripts/deliver.sh /mnt/%PROJECT_NAME% "" "" "" "" 1 1
scripts/deliver.sh /mnt/%PROJECT_NAME% '' '' '' '' 1 1
'''
}
retryWithBackoff(3, 10) {
sh '''
scripts/deliver.sh /mnt/%PROJECT_NAME% "" aarch64
scripts/deliver.sh /mnt/%PROJECT_NAME% '' aarch64
'''
}
retryWithBackoff(3, 10) { sh 'scripts/deliver.sh /mnt/%PROJECT_NAME%' }

View File

@@ -66,12 +66,12 @@ pipeline {
script {
retryWithBackoff(3, 10) {
sh '''
scripts/deliver.sh /mnt/%PROJECT_NAME% "" aarch64
scripts/deliver.sh /mnt/%PROJECT_NAME% '' aarch64
'''
}
retryWithBackoff(3, 10) {
sh '''
scripts/deliver.sh /mnt/%PROJECT_NAME% "" x86_64
scripts/deliver.sh /mnt/%PROJECT_NAME% '' x86_64
'''
}
}

View File

@@ -55,7 +55,7 @@ pipeline {
script {
retryWithBackoff(3, 10) {
bat '''
scripts\\deliver.cmd C:\\deliver\\%PROJECT_NAME% "" x86_64
scripts\\deliver.cmd C:\\deliver\\%PROJECT_NAME% '' x86_64
'''
}
}