You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2023/09/05 03:04:07 UTC

[arrow] branch main updated: GH-37433: [CI][Release] Increase timeout for macOS (#37530)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new a526ba697d GH-37433: [CI][Release] Increase timeout for macOS (#37530)
a526ba697d is described below

commit a526ba697d4e3f009731bebda6838b41899051e3
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Tue Sep 5 12:04:02 2023 +0900

    GH-37433: [CI][Release] Increase timeout for macOS (#37530)
    
    ### Rationale for this change
    
    It seems that running ci/scripts/release_test.sh on macOS may take 10+ minutes. (Normally, it's finished in 5-10 minutes.)
    
    ### What changes are included in this PR?
    
    Increase timeout to 15 minutes.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #37433
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 .github/workflows/dev.yml  | 10 +++++-----
 ci/scripts/release_test.sh |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml
index f97c499890..cee3c74762 100644
--- a/.github/workflows/dev.yml
+++ b/.github/workflows/dev.yml
@@ -70,7 +70,7 @@ jobs:
     name: Source Release and Merge Script on ${{ matrix.runs-on }}
     runs-on: ${{ matrix.runs-on }}
     if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
-    timeout-minutes: 10
+    timeout-minutes: 15
     strategy:
       fail-fast: false
       matrix:
@@ -78,10 +78,10 @@ jobs:
           - macos-latest
           - ubuntu-latest
     env:
-      GIT_AUTHOR_NAME: Github Actions
-      GIT_AUTHOR_EMAIL: github@actions
-      GIT_COMMITTER_NAME: Github Actions
-      GIT_COMMITTER_EMAIL: github@actions
+      GIT_AUTHOR_NAME: "github-actions[bot]"
+      GIT_AUTHOR_EMAIL: "github-actions[bot]@users.noreply.github.com"
+      GIT_COMMITTER_NAME: "github-actions[bot]"
+      GIT_COMMITTER_EMAIL: "github-actions[bot]@users.noreply.github.com"
     steps:
       - name: Checkout Arrow
         uses: actions/checkout@v4
diff --git a/ci/scripts/release_test.sh b/ci/scripts/release_test.sh
index ae2ab32888..583d9618c6 100755
--- a/ci/scripts/release_test.sh
+++ b/ci/scripts/release_test.sh
@@ -23,6 +23,6 @@ arrow_dir=${1}
 
 pushd ${arrow_dir}
 
-dev/release/run-test.rb
+dev/release/run-test.rb -vv
 
 popd