Skip to content

Commit

Permalink
Fix OSX build without GeoIP brew package
Browse files Browse the repository at this point in the history
  • Loading branch information
airween committed Jan 4, 2025
1 parent d9101a4 commit 900e7bc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
lua \
libmaxminddb \
libxml2 \
geoip \
ssdeep \
pcre \
bison \
Expand All @@ -111,6 +110,13 @@ jobs:
with:
submodules: true
fetch-depth: 0
- name: Build GeoIP
run: |
git clone https://github.com/maxmind/geoip-api-c.git
cd geoip-api-c
autoreconf --install
./configure --disable-dependency-tracking --disable-silent-rules --prefix=/opt/homebrew
make install
- name: build.sh
run: ./build.sh
- name: configure
Expand Down

0 comments on commit 900e7bc

Please sign in to comment.