jenkinsci / jenkinsci/github-autostatus-plugin

Nested stages

Open
#52 9 comments 2 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
58
Forks
38
PR merge metrics
No merged PRs in 30d

Description

Hello,

i have a JenkinsFile with multiple nested stages.
A simple example would look like this:
```
pipeline {
agent any
stages {
stage('Stage A') {
steps {
script {
...
}
}
}

stage('MFC5xx') {
parallel {
stage ('Stage B') {
stages {
stage ('Stage B 1') {
steps {
...
}
}
stage ('Stage B 2') {
steps {
...
}
}
}
}
stage ('Stage C') {
stages {
stage ('Stage C 1') {
steps {
...
}
}
stage ('Stage C 2') {
steps {
...
}
}
}
}
}
}
}
}
```

The status on the github page shows me the results from Stage A and B and 'continuous-integration/jenkins/branch'. How is it possible to show the status from Stage B1, B2, C1 and C2?

Plugin version is 3.5.0. Jenkins is 2.176.3.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.