Skip to content

Commit 15ccd6d

Browse files
authored
GH-46593: [CI][Integration] Disable nested log grouping (#46594)
### Rationale for this change GitHub Actions support log grouping: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#grouping-log-lines But it doesn't support nested grouping. If we nest grouping, some logs may not be grouped. See #46593 for example. ### What changes are included in this PR? Stop GitHub Actions workflow commands including grouping while grouping. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #46593 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 7f41ece commit 15ccd6d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ci/scripts/util_log.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717

1818
github_actions_group_begin() {
1919
echo "::group::$1"
20+
echo "::stop-commands::arrow-log-grouping"
2021
set -x
2122
}
2223

2324
github_actions_group_end() {
2425
set +x
26+
echo "::arrow-log-grouping::"
2527
echo "::endgroup::"
2628
}

0 commit comments

Comments
 (0)