| Crates.io | radicle-ci-broker |
| lib.rs | radicle-ci-broker |
| version | 0.21.0 |
| created_at | 2024-04-03 11:51:42.712356+00 |
| updated_at | 2025-09-24 06:43:11.605743+00 |
| description | add integration to CI engins or systems to a Radicle node |
| homepage | https://radicle.xyz |
| repository | https://app.radicle.xyz/nodes/radicle.liw.fi/rad:zwTxygwuz5LDGBq255RA2CbNGrz8 |
| max_upload_size | |
| id | 1194994 |
| size | 733,554 |
Add integration to CI engines/systems/services to Radicle, a distributed git hosting and collaboration system.
The doc directory holds some documentation for the Radicle CI Broker:
radicle-ci-broker, checkout the User guideradicle-ci-broker, checkout the architecture documentHTML pages can be generated from the documentation. To build those,
run make in the doc directory:
RADICLE_CI_BROKER_WEBROOT=/tmp/ci make -C doc publish
The RADICLE_CI_BROKER_WEBROOT environment variable defines where the
generated HTML pages should end up.
You'll need some tools installed: Pandoc,
graphviz (dot),
PlantUML,
pikchr-cli. The latter is a
Rust crate, so you can install it with cargo install pikchr-cli. The
other dependencies can usually be installed through your system
package manager. Note there's a flake.nix that provides
all the needed tools, use it with the usual nix develop command.
The crate contains several binaries:
cib --- the actual CI broker
cibtool --- management tool for node operators, for managing the
CI broker
synthetic-events --- test tool for CI broker developers
There is simple, simplistic, rudimentary, personal-use-only packaging
for Debian in the debian directory, used by Lars to build packages
for his own use.
To run cib or cibtool from the source tree:
cargo run --bin cib -- --config config.yaml process-events
cargo run --bin cibtool -- --db ci-broker.db event list
Note the -- argument. It tells cargo run that all the arguments
that follow are to be passed to the program being run, and not used by
cargo itself.
To run the test suite for the CI broker:
cargo test
(The usual way, for a Rust program.)
In addition to the usual Unix command line tools, you need the following programs installed for the test suite:
jqgitsqlite3rad (from Radicle)git-remote-rad (from Radicle)subplot (Instructions here. Required for doc make target.)The configuration file is named on the command line. It is a YAML
file. See ci-broker.md for examples. Those examples
are verified to work every time the test suite runs.
You need to use an "adapter" together with the CI broker to actually run CI on projects. At least the following adapters for external CI systems are known:
.radicle/native.yamlpodman containers, using .radicle/native.yaml (Radicle Native CI compatibility) or .radicle/cci.yamlSee also the radicle-ci-integrations-docs repository with guides for project maintainers and node operators about using Radicle CI. They too list CI adapters.
Radicle CI broker is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT for details.