Skip to content

Commit 8b47ae8

Browse files
committed
Make brew verbose, limit to 10 minutes
This step regularly locks up. Maybe --verbose will provide some insight. Also limit the step to 10 minutes to avoid holding up resources.
1 parent 2b49403 commit 8b47ae8

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/actions/brew/action.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ runs:
1313
1414
# Some packages exist on x86 but not arm, or vice versa.
1515
# Install them with reinstall to avoid warnings.
16-
brew reinstall autoconf webp tidy-html5 libzip libsodium icu4c
17-
brew install \
16+
brew reinstall -v \
17+
autoconf \
18+
webp \
19+
tidy-html5 \
20+
libzip \
21+
libsodium \
22+
icu4c
23+
brew install -v \
1824
bison \
1925
re2c
20-
brew install \
26+
brew install -v \
2127
aspell \
2228
bzip2 \
2329
enchant \

.github/workflows/nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ jobs:
367367
- name: Update clang
368368
uses: ./.github/actions/macos-update-clang
369369
- name: brew
370+
timeout-minutes: 10
370371
uses: ./.github/actions/brew
371372
- name: ./configure
372373
uses: ./.github/actions/configure-macos

.github/workflows/push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ jobs:
167167
- name: Update clang
168168
uses: ./.github/actions/macos-update-clang
169169
- name: brew
170+
timeout-minutes: 10
170171
uses: ./.github/actions/brew
171172
- name: ccache
172173
uses: hendrikmuhs/ccache-action@v1.2

0 commit comments

Comments
 (0)