We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0681b6 + eb7e2b8 commit d9acf3dCopy full SHA for d9acf3d
.github/workflows/ci.yml
@@ -102,7 +102,6 @@ jobs:
102
lua \
103
libmaxminddb \
104
libxml2 \
105
- geoip \
106
ssdeep \
107
pcre \
108
bison \
@@ -111,6 +110,16 @@ jobs:
111
110
with:
112
submodules: true
113
fetch-depth: 0
+ - name: Build GeoIP
114
+ run: |
115
+ git clone --depth 1 --no-checkout https://github.com/maxmind/geoip-api-c.git
116
+ cd geoip-api-c
117
+ git fetch --tags
118
+ # Check out the last release, v1.6.12
119
+ git checkout 4b526e7331ca1d692b74a0509ddcc725622ed31a
120
+ autoreconf --install
121
+ ./configure --disable-dependency-tracking --disable-silent-rules --prefix=/opt/homebrew
122
+ make install
123
- name: build.sh
124
run: ./build.sh
125
- name: configure
0 commit comments