Skip to content

Commit

Permalink
Fix Blue Ocean display of pre-test-checks
Browse files Browse the repository at this point in the history
Blue Ocean does not properly display "single-threaded" steps in any
stage that also includes a parallel step. Separate the BranchInfo
gathering into its own separate step, so the other checks are displayed
properly.

Signed-off-by: Bence Szépkúti <[email protected]>
  • Loading branch information
bensze01 committed Nov 25, 2024
1 parent 1035734 commit 552431f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vars/mbedtls.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,11 @@ void run_pr_job(String target_repo, boolean is_production, List<String> branches

common.init_docker_images()

stage('pre-test-checks') {
stage('branch-info') {
infos = common.get_branch_information(branches)
}

stage('pre-test-checks') {
common.check_every_all_sh_component_will_be_run(infos)
}
} catch (err) {
Expand Down

0 comments on commit 552431f

Please sign in to comment.