From 2f7c2bfc6a2bbf9f176bc2f063b3a28ef1704790 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Mon, 16 Mar 2026 16:20:25 +1300 Subject: [PATCH 1/2] [ML] Use python:3 instead of python:3-slim for CI analytics steps The python:3-slim image lacks curl and git, which the Buildkite agent environment hook requires. This caused the analyze_build_timings, ingest_build_timings, and check_build_regression steps to fail with exit code 127 ("command not found"). Made-with: Cursor --- .buildkite/pipelines/analyze_build_timings.yml.sh | 2 +- .buildkite/pipelines/check_build_regression.yml.sh | 2 +- .buildkite/pipelines/ingest_build_timings.yml.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipelines/analyze_build_timings.yml.sh b/.buildkite/pipelines/analyze_build_timings.yml.sh index 27e188f58..79bf79e2f 100755 --- a/.buildkite/pipelines/analyze_build_timings.yml.sh +++ b/.buildkite/pipelines/analyze_build_timings.yml.sh @@ -22,5 +22,5 @@ steps: allow_dependency_failure: true soft_fail: true agents: - image: "python:3-slim" + image: "python:3" EOL diff --git a/.buildkite/pipelines/check_build_regression.yml.sh b/.buildkite/pipelines/check_build_regression.yml.sh index f89b52572..f800666ff 100755 --- a/.buildkite/pipelines/check_build_regression.yml.sh +++ b/.buildkite/pipelines/check_build_regression.yml.sh @@ -22,5 +22,5 @@ steps: allow_dependency_failure: true soft_fail: true agents: - image: "python:3-slim" + image: "python:3" EOL diff --git a/.buildkite/pipelines/ingest_build_timings.yml.sh b/.buildkite/pipelines/ingest_build_timings.yml.sh index 6c1263cbe..92f314ea4 100755 --- a/.buildkite/pipelines/ingest_build_timings.yml.sh +++ b/.buildkite/pipelines/ingest_build_timings.yml.sh @@ -23,7 +23,7 @@ steps: allow_dependency_failure: true soft_fail: true agents: - image: "python:3-slim" + image: "python:3" env: BUILDKITE_API_READ_TOKEN: "" EOL From 8109acf7cdc4cfd80ccc8a6b1cb512c9120c2a47 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Tue, 17 Mar 2026 15:16:19 +1300 Subject: [PATCH 2/2] [ML] Retrigger CI for aarch64 Java IT flake Made-with: Cursor