Skip to content

Commit 62452cd

Browse files
committed
Explicitly set LazPerf version to v1.5 to add support in the Docker image and fix the CI (some work is needed to upgrade to a newer version)
1 parent 43d4bce commit 62452cd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ MAINTAINER Paul Blottiere <blottiere.paul@gmail.com>
33

44
ENV POSTGRES_VERSION 14
55
ENV POSTGIS_VERSION 3
6+
ENV LAZPERF_VERSION 1.5.0
67

78
RUN apt-get update \
89
&& apt-get install -y --no-install-recommends \
@@ -22,9 +23,10 @@ RUN apt-get update \
2223
postgresql-server-dev-all \
2324
libxml2-dev \
2425
&& rm -rf /var/lib/apt/lists/* \
25-
&& git clone https://github.com/verma/laz-perf.git \
26+
&& git clone https://github.com/hobuinc/laz-perf.git \
2627
&& cd laz-perf \
27-
&& cmake . \
28+
&& git checkout ${LAZPERF_VERSION} \
29+
&& cmake -DWITH_TESTS=FALSE . \
2830
&& make \
2931
&& make install \
3032
&& cd .. \

tools/install_lazperf.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
set -ex
3-
git clone https://github.com/verma/laz-perf.git
4-
cd laz-perf; cmake .; make; sudo make install
3+
git clone https://github.com/hobuinc/laz-perf.git
4+
cd laz-perf; git checkout 1.5.0; cmake .; make; sudo make install

0 commit comments

Comments
 (0)