Add failed jobs widget to MR pipelines tab
What does this MR do and why?
Add failed jobs tract to MR pipelines tab
Behind a FF we add the ability to see failed jobs trace directly inside the pipelines tab of a MR. Failed jobs are only fetched when clicking on the button to expand the table. Then each failed jobs is fetched and can be clicked on to expand the job log and see why the job failed.
this is behind a disabled feature flag: ci_job_failures_in_mr
.
Screenshots or screen recordings
Before | After |
---|---|
Screen_Recording_2023-06-05_at_3.18.34_PM
How to set up and validate locally
- Enable feature flag in rails console `Feature.enable(:ci_job_failures_in_mr)
- Make sure to have a functioning runner
- We need a MR with jobs failures. An easy to do so is to make a merge request on the ci config file and add explicit failures
- Navigate to
Build -> Pipeline Editor
- Change your config to include jobs failures like so:
my_failed_job:
script: exit 1
- Create a merge request with that change
- Navigate to the Merge request page
- Go to the pipelines page
- Notice the new link "Show failed jobs"
- Click on said link
- Notice you see all failed jobs
- Click on the row of the failed job
- Notice that the job log is shown
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.
Edited by Frédéric Caplette