Skip to content

Commit

Permalink
trigger linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 28, 2019
1 parent 7c43b1a commit b687157
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/azp/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
ninja install
cd /
# Python extension testing
#
pip3 install packaging cython
git clone https://github.com/PDAL/python.git pdal-python
cd pdal-python
Expand Down
9 changes: 8 additions & 1 deletion scripts/docker/ubuntu/dependencies/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --fix-mi
libeigen3-dev \
ninja-build \
sqlite3 \
libgeos-dev \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/hobu/nitro \
Expand Down Expand Up @@ -181,7 +182,6 @@ RUN git clone --branch release/3.0 https://github.com/OSGeo/gdal.git \
--with-geos=/usr/bin/geos-config \
--with-geotiff=/usr \
--with-proj=/usr \
--with-geos \
--with-ogdi=no \
--with-curl \
--with-pg \
Expand All @@ -191,6 +191,13 @@ RUN git clone --branch release/3.0 https://github.com/OSGeo/gdal.git \
&& make install \
&& rm -rf /gdal

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --fix-missing --no-install-recommends \
libfreexl-dev

RUN curl -LOs http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-5.0.0-beta0.tar.gz && tar zxvf libspatialite-5.0.0-beta0.tar.gz && cd /libspatialite-5.0.0-beta0 \
&& CXXFLAGS="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" CFLAGS="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" ./configure --prefix=/usr \
&& make -j 4 \
&& make install

RUN \
curl -LOs http://download.osgeo.org/proj/proj-datumgrid-1.8.zip && unzip -j -u -o proj-datumgrid-1.8.zip -d /usr/share/proj && rm proj-datumgrid-1.8.zip ; \
Expand Down

0 comments on commit b687157

Please sign in to comment.