ci(bluebuild): override CLI container entrypoint to bluebuild binary
Some checks failed
Build veilor-os OCI (BlueBuild) / Build + push OCI (push) Failing after 52s

Container's default entrypoint is dumb-init, which interpreted 'build'
as a command to exec rather than as a bluebuild subcommand. Pin
--entrypoint /usr/local/bin/bluebuild and pass 'build ...' as args.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
claude-veilor-bot 2026-05-06 17:03:53 +01:00
parent f86e0f5fc6
commit 765be1f7e5

View file

@ -108,6 +108,7 @@ jobs:
# Mount the repo + podman socket; build with buildah driver.
podman run --rm \
--privileged \
--entrypoint /usr/local/bin/bluebuild \
-v "$PWD:/work" \
-w /work \
-e BB_BUILD_DRIVER=buildah \