xref: /PHP-8.1/.github/actions/brew/action.yml (revision 9128fb8f)
1name: brew
2runs:
3  using: composite
4  steps:
5    - shell: bash
6      run: |
7        set -x
8        brew install \
9          pkg-config \
10          autoconf \
11          bison \
12          re2c
13        brew install \
14          openssl@1.1 \
15          curl \
16          krb5 \
17          bzip2 \
18          enchant \
19          libffi \
20          libpng \
21          webp \
22          freetype \
23          intltool \
24          libiconv \
25          zlib \
26          t1lib \
27          gd \
28          libzip \
29          gmp \
30          tidy-html5 \
31          libxml2 \
32          libjpeg \
33          libxslt \
34          postgresql
35        brew reinstall icu4c@74
36        brew link icu4c gettext --force
37