From 18922351e3d0d99c76d00e570ce8d066e003a778 Mon Sep 17 00:00:00 2001 From: Swagat Bora Date: Mon, 30 Dec 2024 21:18:22 +0000 Subject: [PATCH] Retry buildkite isolated tests since they are known to be flaky Signed-off-by: Swagat Bora --- .buildkite/pipeline.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index a13cf99a0..92977a38b 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -12,7 +12,6 @@ # permissions and limitations under the License. steps: - - label: ":docker: Build" agents: queue: "${BUILDKITE_AGENT_META_DATA_QUEUE:-default}" @@ -34,7 +33,7 @@ steps: queue: "${BUILDKITE_AGENT_META_DATA_QUEUE:-default}" distro: "${BUILDKITE_AGENT_META_DATA_DISTRO}" hostname: "${BUILDKITE_AGENT_META_DATA_HOSTNAME}" - command: 'sudo losetup -l' + command: "sudo losetup -l" - wait @@ -77,6 +76,10 @@ steps: - "runtime/logs/*" command: - make -C runtime integ-test FICD_DM_POOL=build_${BUILDKITE_BUILD_NUMBER}_runtime + retry: + automatic: + - exit_status: "*" + limit: 3 # - label: ":running: snapshotter isolated tests" # agents: @@ -137,4 +140,3 @@ steps: command: - make -C runtime critest FICD_DM_POOL=build_${BUILDKITE_BUILD_NUMBER}_critest timeout_in_minutes: 10 -