Skip to content

Commit 900e7bc

Browse files
committed
Fix OSX build without GeoIP brew package
1 parent d9101a4 commit 900e7bc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ jobs:
102102
lua \
103103
libmaxminddb \
104104
libxml2 \
105-
geoip \
106105
ssdeep \
107106
pcre \
108107
bison \
@@ -111,6 +110,13 @@ jobs:
111110
with:
112111
submodules: true
113112
fetch-depth: 0
113+
- name: Build GeoIP
114+
run: |
115+
git clone https://github.com/maxmind/geoip-api-c.git
116+
cd geoip-api-c
117+
autoreconf --install
118+
./configure --disable-dependency-tracking --disable-silent-rules --prefix=/opt/homebrew
119+
make install
114120
- name: build.sh
115121
run: ./build.sh
116122
- name: configure

0 commit comments

Comments
 (0)