camunda / camunda-bpm-platform

Flexible framework for workflow and decision automation with BPMN and DMN. Integration with Quarkus, Spring, Spring Boot, CDI.
https://camunda.com/
Apache License 2.0
4.11k stars 1.55k forks source link

Add performance monitoring to CI #2895

Closed yanavasileva closed 1 year ago

yanavasileva commented 1 year ago

Acceptance Criteria (Required on creation)

Hints

Links

Breakdown

tasso94 commented 1 year ago

Steps of type sh are displayed very generically in the Gantt view: image

This makes it hard to understand what the step exactly does.

We can pass a label for these generic sh steps as described here: https://plugins.jenkins.io/opentelemetry/#plugin-content-enrich-your-pipeline-sh-bat-and-powershell-steps-with-meaningful-explanation-thanks-to-labels

node {
    sh(label: 'Maven verify', script: './mvnw deploy')
}