Skip to content

Commit e7e3d1d

Browse files
committed
Install libmaxminddb-dev and libxml2 with apt
1 parent 7297c4f commit e7e3d1d

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,10 @@ jobs:
3131
with:
3232
submodules: true
3333

34-
- name: Install libmaxminddb
35-
run: |
36-
mkdir -p "$HOME/libmaxminddb"
37-
git clone --recursive https://github.com/maxmind/libmaxminddb.git
38-
cd libmaxminddb
39-
./bootstrap
40-
./configure --prefix="$HOME/libmaxminddb"
41-
make
42-
make install
34+
- name: Install dependencies
35+
# We need libxml2 due ot a bug in setup-php with 8.4. It can probalby
36+
# be removed after 8.4 is released.
37+
run: sudo apt-get update && sudo apt-get install libmaxminddb-dev libxml2
4338

4439
- name: Build extension
4540
run: |

0 commit comments

Comments
 (0)