Skip to content

Commit 3e95dcb

Browse files
committed
chore: Use Amazon Linux 2023 for per-arch step
No reason to use an older platform. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent 983a20a commit 3e95dcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.buildkite/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def __init__(self, with_build_step=True, **kwargs):
256256
self.per_instance = overlay_dict(per_instance, args.step_param)
257257
self.per_arch = self.per_instance.copy()
258258
self.per_arch["instances"] = ["m6i.metal", "m7g.metal"]
259-
self.per_arch["platforms"] = [("al2", "linux_5.10")]
259+
self.per_arch["platforms"] = [("al2023", "linux_6.1")]
260260
self.binary_dir = args.binary_dir
261261
# Build sharing
262262
if with_build_step:

.buildkite/pipeline_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# Kani step default
6060
# Kani runs fastest on m6a.metal
6161
instances=["m6a.metal", "m7g.metal"],
62-
platforms=[("al2", "linux_5.10")],
62+
platforms=[("al2", "linux_5.10"), ("al2023", "linux_6.1")],
6363
timeout_in_minutes=300,
6464
**DEFAULTS_PERF,
6565
depends_on_build=False,

0 commit comments

Comments
 (0)