Skip to content

Commit 84d2d91

Browse files
authored
[ML] Fix CI analytics steps failing with exit code 127 (#3000)
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
1 parent e85af07 commit 84d2d91

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.buildkite/pipelines/analyze_build_timings.yml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ steps:
2222
allow_dependency_failure: true
2323
soft_fail: true
2424
agents:
25-
image: "python:3-slim"
25+
image: "python:3"
2626
EOL

.buildkite/pipelines/check_build_regression.yml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ steps:
2222
allow_dependency_failure: true
2323
soft_fail: true
2424
agents:
25-
image: "python:3-slim"
25+
image: "python:3"
2626
EOL

.buildkite/pipelines/ingest_build_timings.yml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
allow_dependency_failure: true
2424
soft_fail: true
2525
agents:
26-
image: "python:3-slim"
26+
image: "python:3"
2727
env:
2828
BUILDKITE_API_READ_TOKEN: ""
2929
EOL

0 commit comments

Comments
 (0)