Skip to content

Commit

Permalink
GH-37433: [CI][Release] Increase timeout for macOS (#37530)
Browse files Browse the repository at this point in the history
### 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 <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
kou authored Sep 5, 2023
1 parent 4589499 commit a526ba6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,18 @@ 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:
runs-on:
- 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
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/release_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ arrow_dir=${1}

pushd ${arrow_dir}

dev/release/run-test.rb
dev/release/run-test.rb -vv

popd

0 comments on commit a526ba6

Please sign in to comment.