From aa33f19d6bf4b5eef838d127b09c28900cafbdd6 Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Wed, 30 Nov 2022 15:11:57 +0100 Subject: [PATCH] temporarily increase the timeout to 15 mins We need to increase the timeout for each test to 15 minutes because we are experiencing timeouts when running the tests. I think this might be actually related to the hosts running the CI, because some early investigations by aghecen@amazon.com show that the threads are blocked on doing epoll_wait. This is odly similar to the issue discussed here related to epoll: https://lore.kernel.org/all/Y1pY2n6E1Xa58MXv@kroah.com/ For more details, check: https://github.com/rust-vmm/community/issues/137 Signed-off-by: Andreea Florescu --- .buildkite/autogenerate_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/autogenerate_pipeline.py b/.buildkite/autogenerate_pipeline.py index 4a29d7c..d904ef4 100755 --- a/.buildkite/autogenerate_pipeline.py +++ b/.buildkite/autogenerate_pipeline.py @@ -111,7 +111,7 @@ class BuildkiteStep: } } ], - 'timeout_in_minutes': 5 + 'timeout_in_minutes': 15 } def _set_platform(self, platform):