Crates.io | thebakery |
lib.rs | thebakery |
version | 0.1.49 |
source | src |
created_at | 2024-04-10 11:22:00.288916 |
updated_at | 2024-09-25 19:19:02.010188 |
description | Build engine for the Yocto/OE Projects |
homepage | |
repository | https://github.com/Mikrodidakt/bakery |
max_upload_size | |
id | 1203455 |
size | 688,761 |
Bakery is a versatile command-line tool designed to simplify and streamline the process of building Yocto Project or OpenEmbedded projects. It serves as a wrapper around the powerful bitbake tool, leveraging Docker to ensure consistent environments across local and CI (Continuous Integration) builds.
Building complex Yocto Project or OpenEmbedded projects can often involve intricate scripts and directory structures, making maintenance challenging. Bakery addresses this challenge by introducing a standardized approach while preserving flexibility. It aims to enhance the development experience by consolidating essential project configuration into JSON files, promoting a cleaner and more maintainable workflow.
Download one of the deb-packages releases.
user@node:/dir$ BAKERY_VERSION=x.y.z
user@node:/dir$ wget https://github.com/Mikrodidakt/bakery/releases/download/v${BAKERY_VERSION}/bakery-v${BAKERY_VERSION}.deb
user@node:/dir$ sudo dpkg -i bakery-v${BAKERY_VERSION}.deb
Because bakery is written in Rust bakery is a single binary depending only on libc. It will be installed under /usr/bin/bakery.
Please see build source code for information on how to build bakery.
By default, Bakery utilizes Docker. Refer to the Docker setup guide for detailed instructions on setting up Docker on your host system. Additionally, if you wish to run Bakery without Docker, please consult the guide on disabling Docker for detailed instructions. To test out that docker works run
user@node:/dir$ BAKERY_VERSION=x.y.z
user@node:/dir$ docker run -it ghcr.io/mikrodidakt/bakery/bakery-workspace:${BAKERY_VERSION} /bin/bash
Build engine for the Yocto/OE
Usage: bakery <COMMAND>
Commands:
sync Sync workspace e.g sync/update git submodules
upload Upload artifacts to artifactory server
deploy Deploy artifact to target
list List all builds or the tasks available for one build
setup Setup workspace e.g initializing git submodules
clean Clean one or all the tasks defined in a build config
build Execute a build either a full build or a task of one of the builds
shell Initiate a shell within Docker or execute any command within the BitBake environment
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
For detailed instructions on using each sub-command, please refer to the sub-commands documentation. Each sub-command is configured by defining a build configuration file that describes how to build a product. It is recommended to begin by starting a shell, as this not only sets up the environment for using Bakery but also enables the use of any tools available through OE/Yocto.
user@node:/dir$ bakery shell -c <config>
When starting a Bakery shell the config will be selected and used inside the shell. The terminal will present the following information
<user>@bakery-v<version>[<config>]:~/$
Each subcommand will be available as an alias with the build config predefined. Simply type the subcommand from any location to run it. To get a list of the current subcommands run
<user>@bakery-v<version>[<config>]:~/$ help
To start a build run
<user>@bakery-v<version>[<config>]:~/$ build
For more information on how to use the shell and any sub-command please refere to shell.
To try bakery out the easiest way is to use the template workspace under tests/template-workspace. Run
user@node:/dir$ cd tests/template-workspace
user@node:/dir$ git submodule update
This will pull down poky and together with the workspace and the build config beaglebone black can be built using the bakery workspace shell.
user@bakery-vx.y.z[beaglebone]:~/$
To setup a project from scratch mainly four things are required
Docker Integration: Bakery seamlessly integrates with Docker to create reproducible build environments, ensuring consistency across different development setups.
JSON Configuration: Project-specific configuration is defined in JSON files – the build config and the workspace config. The build config encapsulates all the necessary local.conf and bblayers.conf settings, simplifying the build process.
Task-Based Workflow: Bakery organizes tasks within a build, allowing users to define various operations, from building image recipes to signing firmware or packaging images for redistribution. Tasks can be BitBake tasks or custom scripts, providing flexibility in project workflows.
Developer-Centric CI Alignment: Bakery promotes a development environment where CI builds are defined using tasks in the build config. This ensures that CI processes are transparent and understandable, allowing developers to effortlessly reproduce the CI build locally.
Consistency Across Environments: With Bakery, the CI build process is aligned with local builds, promoting consistency. Developers can replicate CI builds effortlessly, reducing the chances of discrepancies between development and CI environments.
Debugging Made Easy: Developers can quickly identify and resolve issues by reproducing the exact CI build locally. This tight integration between CI and local development simplifies debugging, leading to faster issue resolution.
Improved Developer Experience: By aligning CI with local builds, Bakery enhances the overall developer experience. Developers gain confidence in the reliability of their builds and can iterate more efficiently on their projects.
While Bakery simplifies many aspects of Yocto Project and OpenEmbedded development, it's essential to understand its limitations:
Bakery strives to maintain the flexibility for developers who seek complete control of their projects, ensuring compatibility with all tools and workflows available in a Yocto Project and OpenEmbedded project.