ci(bluebuild): override CLI container entrypoint to bluebuild binary
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.
This commit is contained in:
parent
1e70cc5461
commit
756b03aa5c
1 changed files with 1 additions and 0 deletions
1
.github/workflows/build-bluebuild.yml
vendored
1
.github/workflows/build-bluebuild.yml
vendored
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue