Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
bb59c902
Unverified
Commit
bb59c902
authored
Feb 15, 2026
by
Amr Mahdi
Committed by
GitHub
Feb 15, 2026
Browse files
[CI] Write bake config to temp directory instead of repo root (#34569)
Signed-off-by:
Amr Mahdi
<
amrmahdi@meta.com
>
parent
5bff999d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
.buildkite/image_build/image_build.sh
.buildkite/image_build/image_build.sh
+6
-1
No files found.
.buildkite/image_build/image_build.sh
View file @
bb59c902
...
@@ -142,7 +142,12 @@ resolve_parent_commit() {
...
@@ -142,7 +142,12 @@ resolve_parent_commit() {
print_bake_config
()
{
print_bake_config
()
{
echo
"--- :page_facing_up: Resolved bake configuration"
echo
"--- :page_facing_up: Resolved bake configuration"
BAKE_CONFIG_FILE
=
"bake-config-build-
${
BUILDKITE_BUILD_NUMBER
:-
local
}
.json"
# Write to a temp directory to avoid polluting the repo root (which is the
# Docker build context). Files left in the repo root get COPY'd into the
# image and can cause duplicate artifact uploads from downstream steps.
local
bake_tmp
bake_tmp
=
"
$(
mktemp
-d
)
"
BAKE_CONFIG_FILE
=
"
${
bake_tmp
}
/bake-config-build-
${
BUILDKITE_BUILD_NUMBER
:-
local
}
.json"
docker buildx bake
-f
"
${
VLLM_BAKE_FILE_PATH
}
"
-f
"
${
CI_HCL_PATH
}
"
--print
"
${
TARGET
}
"
|
tee
"
${
BAKE_CONFIG_FILE
}
"
||
true
docker buildx bake
-f
"
${
VLLM_BAKE_FILE_PATH
}
"
-f
"
${
CI_HCL_PATH
}
"
--print
"
${
TARGET
}
"
|
tee
"
${
BAKE_CONFIG_FILE
}
"
||
true
echo
"Saved bake config to
${
BAKE_CONFIG_FILE
}
"
echo
"Saved bake config to
${
BAKE_CONFIG_FILE
}
"
echo
"--- :arrow_down: Uploading bake config to Buildkite"
echo
"--- :arrow_down: Uploading bake config to Buildkite"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment