fix test script
All checks were successful
sgraves/cpp-build-system/pipeline/head This commit looks good
sgraves/cpp-build-system_mac/pipeline/head This commit looks good

This commit is contained in:
2025-10-17 19:16:14 -05:00
parent f6548c6f97
commit 668970f573
2 changed files with 5 additions and 5 deletions

View File

@@ -52,9 +52,9 @@ pipeline {
stage('test') { stage('test') {
steps { steps {
script { script {
retryWithBackoff(2, 5) { sh 'scripts/test.sh' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh' }
retryWithBackoff(2, 5) { sh 'scripts/test.sh "" "" "" "" 1 1' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh "" "" "" "" 1 1' }
retryWithBackoff(2, 5) { sh 'scripts/test.sh aarch64' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' }
} }
} }
} }

View File

@@ -48,8 +48,8 @@ pipeline {
stage('test') { stage('test') {
steps { steps {
script { script {
retryWithBackoff(2, 5) { sh 'scripts/test.sh aarch64' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' }
retryWithBackoff(2, 5) { sh 'scripts/test.sh x86_64' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh x86_64' }
} }
} }
} }