CLI · CommandsPipelines & artifacts

Pipelines & artifacts

Inspect CI runs and the registry.

eqs runs ls

Lists the repository/space's recent CI runs. v2.

--repo <r>Filter by repository
--status <s>success|failure|running
shell
eqs runs ls --status failure
eqs runs get <id>

Details of a run: jobs, steps and outcome.

shell
eqs runs get 1042
eqs runs logs <id>

Streams a CI run's logs.

--job <nome>Filter by job
shell
eqs runs logs 1042 --job build
eqs images ls

Lists the container images in the registry. v2.

shell
eqs images ls
eqs spaces ls

Lists the active workspace's spaces.

shell
eqs spaces ls
Combine --json with jq for automation: eqs services ls --json | jq '.[].name'.