Skip to content

Commit 0f60c17

Browse files
authored
update pg14rc1 --> pg14 (#259)
1 parent 1cf6764 commit 0f60c17

File tree

14 files changed

+24
-25
lines changed

14 files changed

+24
-25
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ jobs:
1515
make-docker-images:
1616
strategy:
1717
matrix:
18-
postgres: [9.6, 10, 11, 12, 13, '14rc1']
18+
postgres: [9.6, 10, 11, 12, 13, 14]
1919
postgis: ['2.5', '3.1']
2020
variant: [default, alpine]
2121
exclude:
2222
- postgres: 12
2323
postgis: '2.5'
2424
- postgres: 13
2525
postgis: '2.5'
26-
- postgres: '14rc1'
26+
- postgres: 14
2727
postgis: '2.5'
2828
include:
2929
- postgres: 13
3030
postgis: master
3131
variant: default
32-
- postgres: 14rc1
32+
- postgres: 14
3333
postgis: master
3434
variant: default
3535
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }} variant ${{ matrix.variant }}

13-master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ RUN set -ex \
8181

8282
# proj
8383
ENV PROJ_VERSION master
84-
ENV PROJ_GIT_HASH 35fe5da17d67f793336decbc6e9280fe8f26ca8f
84+
ENV PROJ_GIT_HASH ef5c77acb2a6286f856b9ad6940f78013f6b3c54
8585

8686
RUN set -ex \
8787
&& cd /usr/src \
@@ -97,7 +97,7 @@ RUN set -ex \
9797

9898
# geos
9999
ENV GEOS_VERSION master
100-
ENV GEOS_GIT_HASH d107fccbdffb127af3b571a8f238e700a725984b
100+
ENV GEOS_GIT_HASH 79f75266db60f5c69f5ae48ebc8680b2b26c9f01
101101

102102
RUN set -ex \
103103
&& cd /usr/src \
@@ -114,7 +114,7 @@ RUN set -ex \
114114

115115
# gdal
116116
ENV GDAL_VERSION master
117-
ENV GDAL_GIT_HASH d3f2a360f3f21b85df8ed4c580914248ade7cc38
117+
ENV GDAL_GIT_HASH e9fd8ce797a07df68a12298b9fd3db9ff959932d
118118

119119
RUN set -ex \
120120
&& cd /usr/src \
@@ -172,9 +172,9 @@ RUN set -ex \
172172
COPY --from=builder /usr/local /usr/local
173173

174174
#ENV SFCGAL_GIT_HASH 815d5097f684dbc48b22041bf2047beab36df0a1
175-
ENV PROJ_GIT_HASH 35fe5da17d67f793336decbc6e9280fe8f26ca8f
176-
ENV GEOS_GIT_HASH d107fccbdffb127af3b571a8f238e700a725984b
177-
ENV GDAL_GIT_HASH d3f2a360f3f21b85df8ed4c580914248ade7cc38
175+
ENV PROJ_GIT_HASH ef5c77acb2a6286f856b9ad6940f78013f6b3c54
176+
ENV GEOS_GIT_HASH 79f75266db60f5c69f5ae48ebc8680b2b26c9f01
177+
ENV GDAL_GIT_HASH e9fd8ce797a07df68a12298b9fd3db9ff959932d
178178

179179
# Minimal command line test.
180180
RUN set -ex \
@@ -188,7 +188,7 @@ RUN set -ex \
188188

189189
# install postgis
190190
ENV POSTGIS_VERSION master
191-
ENV POSTGIS_GIT_HASH 0568b9c6c628ac55c643cd017c8edb5315718d7c
191+
ENV POSTGIS_GIT_HASH 21c3f2351e2f8ab0ca3a95ad6fbba04378f4aece
192192

193193
RUN set -ex \
194194
&& apt-get update \

14rc1-3.1/Dockerfile renamed to 14-3.1/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:14rc1-bullseye
1+
FROM postgres:14-bullseye
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV POSTGIS_MAJOR 3
6-
ENV POSTGIS_VERSION 3.1.3+dfsg-1~exp1.pgdg110+1+b1
6+
ENV POSTGIS_VERSION 3.1.4+dfsg-1.pgdg110+1
77

88
RUN apt-get update \
99
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \
File renamed without changes.

14rc1-3.1/alpine/Dockerfile renamed to 14-3.1/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:14rc1-alpine
1+
FROM postgres:14-alpine
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

5-
ENV POSTGIS_VERSION 3.1.3
6-
ENV POSTGIS_SHA256 885e11b26d8385aff49e605d33749a83e711180a3b1996395564ddf6346f3bb4
5+
ENV POSTGIS_VERSION 3.1.4
6+
ENV POSTGIS_SHA256 dfcbad0c6090c80bc59d3ea77d1adc4b3ade533a403761b4af6d9a44be1a6e48
77

88
#Temporary fix:
99
# for PostGIS 2.* - building a special geos
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

14rc1-master/Dockerfile renamed to 14-master/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# "experimental" ; only for testing!
22
# multi-stage dockerfile; minimal docker version >= 17.05
3-
FROM postgres:14rc1-bullseye as builder
3+
FROM postgres:14-bullseye as builder
44

55
LABEL maintainer="PostGIS Project - https://postgis.net"
66

@@ -81,7 +81,7 @@ RUN set -ex \
8181

8282
# proj
8383
ENV PROJ_VERSION master
84-
ENV PROJ_GIT_HASH 35fe5da17d67f793336decbc6e9280fe8f26ca8f
84+
ENV PROJ_GIT_HASH ef5c77acb2a6286f856b9ad6940f78013f6b3c54
8585

8686
RUN set -ex \
8787
&& cd /usr/src \
@@ -97,7 +97,7 @@ RUN set -ex \
9797

9898
# geos
9999
ENV GEOS_VERSION master
100-
ENV GEOS_GIT_HASH d107fccbdffb127af3b571a8f238e700a725984b
100+
ENV GEOS_GIT_HASH 79f75266db60f5c69f5ae48ebc8680b2b26c9f01
101101

102102
RUN set -ex \
103103
&& cd /usr/src \
@@ -114,7 +114,7 @@ RUN set -ex \
114114

115115
# gdal
116116
ENV GDAL_VERSION master
117-
ENV GDAL_GIT_HASH d3f2a360f3f21b85df8ed4c580914248ade7cc38
117+
ENV GDAL_GIT_HASH e9fd8ce797a07df68a12298b9fd3db9ff959932d
118118

119119
RUN set -ex \
120120
&& cd /usr/src \
@@ -140,7 +140,7 @@ RUN set -ex \
140140
&& sfcgal-config --version \
141141
&& pcre-config --version
142142

143-
FROM postgres:14rc1-bullseye
143+
FROM postgres:14-bullseye
144144

145145
RUN set -ex \
146146
&& apt-get update \
@@ -172,9 +172,9 @@ RUN set -ex \
172172
COPY --from=builder /usr/local /usr/local
173173

174174
#ENV SFCGAL_GIT_HASH 815d5097f684dbc48b22041bf2047beab36df0a1
175-
ENV PROJ_GIT_HASH 35fe5da17d67f793336decbc6e9280fe8f26ca8f
176-
ENV GEOS_GIT_HASH d107fccbdffb127af3b571a8f238e700a725984b
177-
ENV GDAL_GIT_HASH d3f2a360f3f21b85df8ed4c580914248ade7cc38
175+
ENV PROJ_GIT_HASH ef5c77acb2a6286f856b9ad6940f78013f6b3c54
176+
ENV GEOS_GIT_HASH 79f75266db60f5c69f5ae48ebc8680b2b26c9f01
177+
ENV GDAL_GIT_HASH e9fd8ce797a07df68a12298b9fd3db9ff959932d
178178

179179
# Minimal command line test.
180180
RUN set -ex \
@@ -188,7 +188,7 @@ RUN set -ex \
188188

189189
# install postgis
190190
ENV POSTGIS_VERSION master
191-
ENV POSTGIS_GIT_HASH 0568b9c6c628ac55c643cd017c8edb5315718d7c
191+
ENV POSTGIS_GIT_HASH 21c3f2351e2f8ab0ca3a95ad6fbba04378f4aece
192192

193193
RUN set -ex \
194194
&& apt-get update \

0 commit comments

Comments
 (0)