Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow graph - Non stage jobs overlap into the stage in the UI #3098

Closed
sagar1312 opened this issue Apr 26, 2024 · 1 comment
Closed

Workflow graph - Non stage jobs overlap into the stage in the UI #3098

sagar1312 opened this issue Apr 26, 2024 · 1 comment
Assignees
Milestone

Comments

@sagar1312
Copy link
Member

What happened:
Non stage jobs are being positioned under stage on the workflow graph in the UI giving a false impression that those jobs are part of the stage.

Example:
image

Pipeline config (screwdriver.yaml)

shared:
    image: node:20
    steps:
        - init: echo 'init'
jobs:
    triggering-stage:
        requires: [~pr, ~commit]
    non-stage-job-alpha:
        requires: [triggering-stage]
    ci-deploy:
        requires: [ ]
    ci-test-batch-1:
        requires: [ ci-deploy ]
    ci-test-batch-2:
        requires: [ ci-deploy ]
    ci-certify:
        requires: [ ci-test-batch-1, ci-test-batch-2 ]
    triggered-by-stage:
        requires: [ ~stage@integration ]

stages:
    integration:
        requires: [triggering-stage]
        jobs: [ci-deploy, ci-test-batch-1, ci-test-batch-2, ci-certify]
        description: "This stage will deploy the latest application to CI environment and certifies it after the tests are passed."

What you expected to happen:
Non stage jobs should be positioned outside stage jobs

How to reproduce it:
Create a pipeline with above screwdriver.yaml config.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

1 participant