xref: /PHP-8.1/.github/actions/brew/action.yml (revision 4be6435c)
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          icu4c \
25          libiconv \
26          zlib \
27          t1lib \
28          gd \
29          libzip \
30          gmp \
31          tidy-html5 \
32          libxml2 \
33          libjpeg \
34          libxslt \
35          postgresql
36        brew link icu4c gettext --force
37