Skip to content

Commit a6465f5

Browse files
committed
Fixed brew link step for pkgconf
1 parent dd8611c commit a6465f5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ jobs:
109109
steps:
110110
- uses: actions/checkout@v1
111111
- name: Install dependencies
112-
run: brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }}
112+
run: |
113+
brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }}
114+
brew link --overwrite pkgconf
113115
- name: Build
114116
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@${{ matrix.openssl }}`/lib/pkgconfig ./configure && make
115117

@@ -121,7 +123,9 @@ jobs:
121123
steps:
122124
- uses: actions/checkout@v1
123125
- name: Install dependencies
124-
run: brew install autoconf automake libtool libevent pkg-config
126+
run: |
127+
brew install autoconf automake libtool libevent pkg-config
128+
brew link --overwrite pkgconf
125129
- name: Install openssl v1.0.2
126130
run: brew install rbenv/tap/[email protected]
127131
- name: Build

0 commit comments

Comments
 (0)