File tree Expand file tree Collapse file tree
pipeline-resource-definitions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 KIBANA_SLACK_NOTIFICATIONS_ENABLED : ' true'
2727 SLACK_NOTIFICATIONS_SKIP_FOR_RETRIES : ' true'
2828 SCOUT_REPORTER_ENABLED : ' true'
29+ FTR_SMART_RETRY_ENABLED : ' false'
2930 allow_rebuilds : true
3031 branch_configuration : main 9.4 9.3 8.19
3132 default_branch : main
Original file line number Diff line number Diff line change 2323 KIBANA_GITHUB_BUILD_COMMIT_STATUS_ENABLED : ' true'
2424 GITHUB_BUILD_COMMIT_STATUS_CONTEXT : kibana-ci
2525 SCOUT_REPORTER_ENABLED : ' true'
26+ FTR_SMART_RETRY_ENABLED : ' false'
2627 allow_rebuilds : true
2728 branch_configuration : ' '
2829 cancel_intermediate_builds : true
Original file line number Diff line number Diff line change @@ -141,8 +141,11 @@ if [[ "$failedConfigs" ]]; then
141141 buildkite-agent meta-data set " $FAILED_CONFIGS_KEY " " $failedConfigs "
142142fi
143143
144- store_failing_tests # attempt 1: record what failed so the retry can verify recovery
145- apply_smart_retry # attempt 2: mark green if all previously-failing tests explicitly passed
144+
145+ if [[ " ${FTR_SMART_RETRY_ENABLED:- } " =~ ^(1| true)$ ]]; then
146+ store_failing_tests # attempt 1: record what failed so the retry can verify recovery
147+ apply_smart_retry # attempt 2: mark green if all previously-failing tests explicitly passed
148+ fi
146149
147150echo " --- FTR configs complete"
148151printf " %s\n" " ${results[@]} "
You can’t perform that action at this time.
0 commit comments