Skip to content

Commit

Permalink
Fixed brew link step for pkgconf
Browse files Browse the repository at this point in the history
  • Loading branch information
filipecosta90 committed Nov 21, 2024
1 parent dd8611c commit a6465f5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }}
run: |
brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }}
brew link --overwrite pkgconf
- name: Build
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@${{ matrix.openssl }}`/lib/pkgconfig ./configure && make

Expand All @@ -121,7 +123,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: brew install autoconf automake libtool libevent pkg-config
run: |
brew install autoconf automake libtool libevent pkg-config
brew link --overwrite pkgconf
- name: Install openssl v1.0.2
run: brew install rbenv/tap/openssl@1.0
- name: Build
Expand Down

0 comments on commit a6465f5

Please sign in to comment.