Modular build framework
Project description
Builddrone
Builddrone is a JSON-driven build orchestration framework and command-line interface for Python projects. A pipeline is made up of named stages, and each stage executes an ordered list of registered modules.
Installation
Install the project and its development tools from the repository root:
python -m pip install -e ".[dev]"
Builddrone requires Python 3.10 or newer.
Blueprint format
Builddrone loads blueprint.json from the current working directory. The
top-level keys are stage names, and each stage contains module steps:
{
"build": [
{
"module": "python.venv",
"args": {"source": ".venv"}
},
{
"module": "python.install",
"args": {"requirements": "requirements.txt"}
},
{
"module": "python.run",
"args": {"source": "main.py"}
}
]
}
Relative paths are resolved from the directory containing blueprint.json.
Each step runs only after the preceding step succeeds.
Command-line usage
Run a stage from the directory containing its blueprint:
cd example/python
python -m builddrone build
python -m builddrone cleanup
The Python example creates .venv automatically, installs its requirements,
lints and runs main.py, and builds a wheel and source distribution with
python -m build. The separate cleanup stage removes the temporary
environment and generated build artifacts.
The Robot Framework example runs similarly:
cd example/robotframework
python -m builddrone test
python -m builddrone cleanup
Its robotframework.test step writes results/output.xml, and
robotframework.rebot converts that result into reports under
results/rebot.
Built-in modules
Filesystem
| Module | Arguments | Purpose |
|---|---|---|
filesystem.copy |
source, destination |
Copy a directory tree. |
filesystem.cleanup |
files, folders |
Remove listed files and folders. |
Python
| Module | Arguments | Purpose |
|---|---|---|
python.venv |
source |
Select an environment, creating it with pip if needed. An empty source resets the runner. |
python.install |
requirements or source |
Install requirements or a package with pip. |
python.run |
source |
Run a Python source file. |
python.build |
none | Run python -m build. |
python.pylint |
paths, files, ignore |
Run Pylint against paths or individual files. |
Robot Framework
Both Robot Framework modules accept an arguments dictionary and an optional
cwd:
| Module | Purpose |
|---|---|
robotframework.test |
Run python -m robot. |
robotframework.rebot |
Run python -m robot.rebot to post-process results. |
Dictionary values are converted to command-line arguments. A null value is a
flag or positional argument, a string receives a following value, and a list
receives multiple values:
{
"module": "robotframework.test",
"args": {
"arguments": {
"--outputdir": "results",
"tests": null
}
}
}
Using Builddrone as a framework
Built-in modules are registered by ExecutionEngine. Custom modules can be
added by passing them to the constructor:
from builddrone.base_module import BaseModule
from builddrone.execution_engine import ExecutionEngine
class GreetingModule(BaseModule):
def run(self, runner, args):
runner.logger.info("Hello from %s", args.get("name", "Builddrone"))
engine = ExecutionEngine({"custom.greeting": GreetingModule()})
engine.run("build")
The custom module can then be used in blueprint.json:
{
"build": [
{
"module": "custom.greeting",
"args": {"name": "Builddrone"}
}
]
}
Every module receives a Runner and a dictionary of arguments. The runner
executes commands with the currently selected Python interpreter and exposes
the blueprint's base directory for relative paths.
Execution flow
python -m builddrone <stage>
|
v
load blueprint.json -> select stage -> execute steps -> report failures
Any non-zero command exit code raises DroneException and stops the stage.
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file builddrone-0.1.1.tar.gz.
File metadata
- Download URL: builddrone-0.1.1.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96d92bcbce354be8e6b0d8bcb6dd3c2ac644693b7ceaaecd3742f5657a5ed309
|
|
| MD5 |
75702cafc3b65565f89e056e9a2cabfa
|
|
| BLAKE2b-256 |
6b1e261844c2d3f67e7f6c8f92887bd821ce4c939dd4ff25d5c30f83d7749ea9
|
File details
Details for the file builddrone-0.1.1-py3-none-any.whl.
File metadata
- Download URL: builddrone-0.1.1-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d3225afa17123a32571ed0d356f97a2678fc40a3c4e042d6d52eb8dae3697e
|
|
| MD5 |
367185e92db04a5dfa75d4408452ca6d
|
|
| BLAKE2b-256 |
8c8e2947264bd42fb9047671c0a677a3bb9e533be91bc3228e98cd5a1ccec790
|