Description
Github Actions allows grouping output of workflow steps. We already use it in the build-info job (selective checks script). The goal of this change is to group output in the other CI checks to improve usability.
Github Actions allows grouping output of workflow steps. We already use it in the build-info job (selective checks script). The goal of this change is to group output in the other CI checks to improve usability.
Helper functions to start/end groups are defined in _start_end.sh. To use these helpers, we need to source the script, along with some prerequisites, like this:
(Definition of root_dir will be different in various scripts, depending on where they are in the source tree.)
After sourcing the libs, group can be created like this:
start_end::group_start "<name of group, shown in collapsible item>" ... <code enclosed in group> ... start_end::group_end