Skip to main content

Modular build framework

Project description

Builddrone

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

builddrone-0.1.0.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

builddrone-0.1.0-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file builddrone-0.1.0.tar.gz.

File metadata

  • Download URL: builddrone-0.1.0.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for builddrone-0.1.0.tar.gz
Algorithm Hash digest
SHA256 91fa278123635d3a0e158c8b7135cab218db5295eb428662d13aa41af2f606d4
MD5 df9e8da833ea510e0ace1d5fe731942f
BLAKE2b-256 d6974760620155f18dd270a659ebf1d2053341e16b9e82ce1fac7cbfdb2d1e0d

See more details on using hashes here.

File details

Details for the file builddrone-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: builddrone-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for builddrone-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4240236a4639591a664ffd8f4063df6853d5e3746db3c8f6d25965b20b7db394
MD5 498cc4df96b5073ed91fe85752e432ef
BLAKE2b-256 1a2f2c5cb4f93d6068ea83d7cebb468f1e4925c7704236d3532079b1475a4223

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page