Files
revng-revng/tests/pypeline/cpp/pipeline.yml
Giacomo Vercesi 4c6436f7b2 pypeline: introduce artifact category
Add categories in the pipeline, allow an artifact to have a category
specified which allows it to be shown or hidden by default. Adapt the
CLI tools to hide artifacts of the category that don't
`show_by_default=True`.
2026-03-31 17:00:48 +02:00

32 lines
689 B
YAML

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
artifact_categories:
- name: main
show-by-default: true
containers:
- name: string-container
type: RootStringContainer
analysis-lists:
- name: initial-auto-analysis
analyses:
- AppendFooLibAnalysis2
branches:
main:
tasks:
- pipe: CreateEntryPipe
arguments: [string-container]
analyses:
- analysis: AppendFooLibAnalysis2
containers: [string-container]
- pipe: AppendFooPipe2
arguments: [string-container]
artifacts:
- name: output
container: string-container
category: main