Skip to content

Commit fd3f788

Browse files
committed
Add support for PostgreSQL 10-18 in Dockerfiles and update scripts
1 parent 4810fe8 commit fd3f788

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/build-package-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- 15
5151
- 16
5252
- 17
53+
- 18
5354
include:
5455
- TARGET_PLATFORM: debian,bullseye
5556
- TARGET_PLATFORM: debian,bookworm

.github/workflows/build-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- 15
5151
- 16
5252
- 17
53+
- 18
5354
include:
5455
- TARGET_PLATFORM: debian,bullseye
5556
- TARGET_PLATFORM: debian,bookworm

templates/Dockerfile-deb.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ RUN set -ex \
132132

133133

134134
# Added for pg18 beta package support.
135-
ENV DEB_PG_SUPPORTED_VERSIONS="14 15 16 17 18"
135+
ENV DEB_PG_SUPPORTED_VERSIONS="10 11 12 13 14 15 16 17 18"
136136

137137
# place scripts on path and declare output volume
138138
ENV PATH /scripts:$PATH

update_dockerfiles

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -euo pipefail
55
IFS=$'\n\t'
66

7-
pgversions='14 15 16 17 18'
7+
pgversions='10 11 12 13 14 15 16 17 18'
88
topdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
99
dockerfiles_dir="${topdir}/dockerfiles"
1010
templates_dir="${topdir}"/templates

update_image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
set -euo pipefail
1010
IFS=$'\n\t'
1111

12-
pgversions='14 15 16 17 18'
12+
pgversions='10 11 12 13 14 15 16 17 18'
1313
topdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
1414
dockerfiles_dir="${topdir}/dockerfiles"
1515

0 commit comments

Comments
 (0)