my-ci-0.0.1 is not a library.
my-ci
Run local CI/CD workflows over an OCI socket (Docker or Podman).
Install
Quickstart
Commands
| Command | Args | Description |
|---|---|---|
init |
[PATH] (default my-ci), --force |
Scaffold the embedded template into PATH. Skips existing unless force. |
build |
[WORKFLOW] |
Build one workflow + deps, or all workflows when omitted. |
run |
[WORKFLOW] |
Build deps, then run workflows that have a command. All when omitted. |
list |
— | Print workflow names from config. |
Global: -c, --config <PATH> (default my-ci/workflows.toml).
workflows.toml schema
= "string" # project name; used as image prefix (default "my-ci")
= "path" # optional; loaded via dotenvy before run, relative to config
[[]]
= "string" # required; unique
= "path" # build context; default "."
= "string" # inline Containerfile OR path ending in .Containerfile
= "string" # optional override; default "{name}:{workflow.name}"
= ["string"] # build order; topologically sorted
= ["KEY=VALUE"] # container env at run time
= ["argv"] # required to run; build-only if omitted
Dependencies build in topological order. A workflow without command is build-only and is skipped by run.