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,9 +52,12 @@ pipeline {
agent any agent any
steps { steps {
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/run_tests.sh' sh 'scripts/run_tests.sh'
} }
} }
}
stage('deliver') { stage('deliver') {
agent any agent any

View File

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