Skip to content

Commit

Permalink
using brew prefix instead of static path for openssl libs on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
filipecosta90 committed Apr 28, 2024
1 parent 28a83bd commit ad1fb2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Install dependencies
run: brew install autoconf automake libtool libevent pkg-config openssl@${{ matrix.openssl }}
- name: Build
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/openssl@${{ matrix.openssl }}/lib/pkgconfig ./configure && make
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@${{ matrix.openssl }}`/lib/pkgconfig ./configure && make

build-macos-openssl-1-0-2:
strategy:
Expand All @@ -125,4 +125,4 @@ jobs:
- name: Install openssl v1.0.2
run: brew install rbenv/tap/[email protected]
- name: Build
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/[email protected]/lib/pkgconfig ./configure && make
run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix [email protected]`/lib/pkgconfig ./configure && make

0 comments on commit ad1fb2f

Please sign in to comment.