added test retry
All checks were successful
BlockStorage/repertory_mac/pipeline/head This commit looks good
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-08-06 17:40:23 -05:00
parent 6821cf3707
commit 4dcd7bd5ce
2 changed files with 8 additions and 2 deletions

View File

@@ -52,7 +52,10 @@ pipeline {
agent any
steps {
sh 'scripts/run_tests.sh'
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/run_tests.sh'
}
}
}

View File

@@ -41,7 +41,10 @@ pipeline {
agent any
steps {
sh 'scripts/run_tests.sh aarch64'
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/run_tests.sh aarch64'
}
}
}