Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 12-3.5 since it is end of life #404

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
make-docker-images:
strategy:
matrix:
postgres: [12, 13, 14, 15, 16, 17]
postgres: [13, 14, 15, 16, 17]
postgis: ['3.5']
variant: [default, alpine]
include:
Expand Down
28 changes: 0 additions & 28 deletions 12-3.5/Dockerfile

This file was deleted.

124 changes: 0 additions & 124 deletions 12-3.5/alpine/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions 12-3.5/alpine/initdb-postgis.sh

This file was deleted.

28 changes: 0 additions & 28 deletions 12-3.5/alpine/update-postgis.sh

This file was deleted.

25 changes: 0 additions & 25 deletions 12-3.5/initdb-postgis.sh

This file was deleted.

28 changes: 0 additions & 28 deletions 12-3.5/update-postgis.sh

This file was deleted.

22 changes: 11 additions & 11 deletions 16-master/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
# cgal & sfcgal
ARG CGAL_GIT_BRANCH
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
ENV CGAL_GIT_HASH c313da8791a99db984d4efcf061cde9a83d05418
ENV SFCGAL_GIT_HASH 38d5c0f5af3eaf38998e53d959994a346deb1c64
ENV CGAL_GIT_HASH b19515e1f82660c9709a2bd152991b8f85d3f411
ENV SFCGAL_GIT_HASH a88742fe3c794e859c2b98e1f1daf030643ebdbf
RUN set -ex \
&& mkdir -p /usr/src \
&& cd /usr/src \
Expand Down Expand Up @@ -120,7 +120,7 @@ RUN set -ex \
&& rm -fr /usr/src/cgal

# proj
ENV PROJ_GIT_HASH c34044742a5f0b67d12e613250601d1cbefcebbd
ENV PROJ_GIT_HASH 8268efca12986e8d33c13cd42aa16ccbf14d86c1
RUN set -ex \
&& cd /usr/src \
&& git clone https://github.com/OSGeo/PROJ.git \
Expand Down Expand Up @@ -150,7 +150,7 @@ RUN set -ex \
&& rm -fr /usr/src/PROJ

# geos
ENV GEOS_GIT_HASH b23952c3618c590c6e9c7c4e9816447090613975
ENV GEOS_GIT_HASH b77f7fa6fb4161f3587eba1b6e7f00197ce46bc5
RUN set -ex \
&& cd /usr/src \
&& git clone https://github.com/libgeos/geos.git \
Expand All @@ -166,7 +166,7 @@ RUN set -ex \
&& rm -fr /usr/src/geos

# gdal
ENV GDAL_GIT_HASH ae464d424efe00bc275478c0c8813aba309a0e56
ENV GDAL_GIT_HASH 28c687a4bbf94522fd2424b007746763819c0ff4
RUN set -ex \
&& cd /usr/src \
&& git clone https://github.com/OSGeo/gdal.git \
Expand Down Expand Up @@ -299,11 +299,11 @@ COPY --from=builder /usr/local /usr/local

ARG CGAL_GIT_BRANCH
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
ENV CGAL_GIT_HASH c313da8791a99db984d4efcf061cde9a83d05418
ENV SFCGAL_GIT_HASH 38d5c0f5af3eaf38998e53d959994a346deb1c64
ENV PROJ_GIT_HASH c34044742a5f0b67d12e613250601d1cbefcebbd
ENV GEOS_GIT_HASH b23952c3618c590c6e9c7c4e9816447090613975
ENV GDAL_GIT_HASH ae464d424efe00bc275478c0c8813aba309a0e56
ENV CGAL_GIT_HASH b19515e1f82660c9709a2bd152991b8f85d3f411
ENV SFCGAL_GIT_HASH a88742fe3c794e859c2b98e1f1daf030643ebdbf
ENV PROJ_GIT_HASH 8268efca12986e8d33c13cd42aa16ccbf14d86c1
ENV GEOS_GIT_HASH b77f7fa6fb4161f3587eba1b6e7f00197ce46bc5
ENV GDAL_GIT_HASH 28c687a4bbf94522fd2424b007746763819c0ff4

# Minimal command line test ( fail fast )
RUN set -ex \
Expand All @@ -322,7 +322,7 @@ RUN set -ex \
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1

# install postgis
ENV POSTGIS_GIT_HASH 607b81d5af061e4a8dd76ee68f3e601d87107a00
ENV POSTGIS_GIT_HASH b98401af48b5372bf73ba27e4c4cfcc78ebd49d1

RUN set -ex \
&& apt-get update \
Expand Down
Loading