Module: Mesa Branch: master Commit: e0b0507635e7070943f456e1b429eeaf5f3b0132 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e0b0507635e7070943f456e1b429eeaf5f3b0132
Author: Juan A. Suarez Romero <[email protected]> Date: Mon Mar 1 13:44:52 2021 +0100 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 <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9335> --- .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() _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
