From 900e7bcd0671548f3315bb414eaadae79becdceb Mon Sep 17 00:00:00 2001 From: Ervin Hegedus Date: Sat, 4 Jan 2025 13:48:39 +0100 Subject: [PATCH] Fix OSX build without GeoIP brew package --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fe0010a..58fedf07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,6 @@ jobs: lua \ libmaxminddb \ libxml2 \ - geoip \ ssdeep \ pcre \ bison \ @@ -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