From e0b0507635e7070943f456e1b429eeaf5f3b0132 Mon Sep 17 00:00:00 2001 From: "Juan A. Suarez Romero" Date: Mon, 1 Mar 2021 13:44:52 +0100 Subject: [PATCH] ci/broadcom: retry always when serial log timeout So far we were retrying the testing (through device rebooting) if we did not detect the boot sequence. But found a couple of times that the serial log can also be "lost" during the testing process. In all those times a manual retry of the job was enough to complete the test. Thus, let's apply the retry once automatically in this case. Signed-off-by: Juan A. Suarez Romero Reviewed-by: Eric Anholt Part-of: --- .gitlab-ci/bare-metal/poe_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/bare-metal/poe_run.py b/.gitlab-ci/bare-metal/poe_run.py index 04388a47641..035c77d735c 100755 --- a/.gitlab-ci/bare-metal/poe_run.py +++ b/.gitlab-ci/bare-metal/poe_run.py @@ -75,7 +75,7 @@ class PoERun: return 1 self.print_error("Reached the end of the CPU serial log without finding a result") - return 1 + return 2 def main(): parser = argparse.ArgumentParser()