Skip to content

Commit

Permalink
Flush
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 11, 2024
1 parent 450f8f2 commit 6d7b428
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
ARCHERY_DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
run: |
source ci/scripts/util_enable_core_dumps.sh
env | sort
archery docker run \
-e ARCHERY_DEFAULT_BRANCH=${{ github.event.repository.default_branch }} \
-e ARCHERY_INTEGRATION_WITH_NANOARROW=1 \
Expand Down
4 changes: 2 additions & 2 deletions dev/archery/archery/utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def group(name):
This does nothing in non GitHub Actions environment for now.
"""
if in_github_actions:
print(f"::group::{name}")
print(f"::group::{name}", flush=True)
try:
yield
finally:
if in_github_actions:
print("::endgroup::")
print("::endgroup::", flush=True)

0 comments on commit 6d7b428

Please sign in to comment.