Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/actions/brew/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ runs:

# Some packages exist on x86 but not arm, or vice versa.
# Install them with reinstall to avoid warnings.
brew reinstall autoconf webp tidy-html5 libzip libsodium icu4c
brew install \
brew reinstall -v \
autoconf \
webp \
tidy-html5 \
libzip \
libsodium \
icu4c
brew install -v \
bison \
re2c
brew install \
brew install -v \
aspell \
bzip2 \
enchant \
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ jobs:
- name: Update clang
uses: ./.github/actions/macos-update-clang
- name: brew
timeout-minutes: 10
uses: ./.github/actions/brew
- name: ./configure
uses: ./.github/actions/configure-macos
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ jobs:
- name: Update clang
uses: ./.github/actions/macos-update-clang
- name: brew
timeout-minutes: 10
uses: ./.github/actions/brew
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down
Loading