Files
Alessandro Di Federico 289c6d4c04 tmp
2022-11-15 16:46:42 +01:00

28 lines
656 B
Smarty

# Pipeline
{% import 'common.tpl' as common %}
{{ common.graph(data.pipeline.steps) }}
The pipeline declares the following containers:
{% for container_declaration in data.pipeline.container_declarations %}
- **{{container_declaration.name}}**: {{container_declaration.type}}
{% endfor %}
{% for step in data.pipeline.steps %}
## <a id="/pipeline/steps/{{step.name}}"></a>{{step.name}} step
**Description**: {{step.doc}}
{{ common.maybe('Parent step', step.parent) }}
{% if step.artifact %}
**Artifact**: /artifact/{{step.name}}
{% endif %}
{{ common.longlist('Pipes', step.pipes) }}
{{ common.longlist('Analyses', step.analyses) }}
{% endfor %}