Skip to content

Commit 6624eff

Browse files
committed
chore: Use pinned AMIs for cross snapshot restore target
We pinned 5.10 kernel AMIs to an old one to mitigate io_uring test failures temporarily. We just changed `DEFAULT_PLATFORMS` but ARM cross snapshot restore test uses a custom set of platforms. Make it use the pinned AMI. Fixes: 238f55c ("chore: Pin 5.10 kernel AMIs") Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent 9b5d7a0 commit 6624eff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.buildkite/pipeline_cross.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def cross_steps():
7171

7272
# https://github.com/firecracker-microvm/firecracker/blob/main/docs/kernel-policy.md#experimental-snapshot-compatibility-across-kernel-versions
7373
aarch64_platforms = [
74-
("al2", "linux_5.10"),
74+
# TODO: unpin kernel 5.10 AMI once we fix io_uring test failures.
75+
("al2", "linux_5.10-pinned"),
7576
("al2023", "linux_6.1"),
7677
]
7778
perms_aarch64 = itertools.product(

0 commit comments

Comments
 (0)