From 238f55c18adb8f67135eaa87af8b53eca4ee2a6f Mon Sep 17 00:00:00 2001 From: Takahiro Itazuri Date: Mon, 22 Apr 2024 11:12:17 +0000 Subject: [PATCH] chore: Pin 5.10 kernel AMIs We are running into io_uring test failures after 5.10 kernel update on 2024-04-19. The issue is under investigation, but it prevents us from merging PRs and it makes multiple pipelines fail. Until solving the issue, pin 5.10 kernel AMIs to older ones and set them default. Signed-off-by: Takahiro Itazuri --- .buildkite/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/common.py b/.buildkite/common.py index d8711269cf4..5a5609baaa1 100644 --- a/.buildkite/common.py +++ b/.buildkite/common.py @@ -22,7 +22,8 @@ DEFAULT_PLATFORMS = [ ("al2", "linux_4.14"), - ("al2", "linux_5.10"), + # TODO: Unpin 5.10 kernel AMI once io_uring issues is solved. + ("al2", "linux_5.10-pinned"), ("al2023", "linux_6.1"), ]