Skip to content

Commit 04d8ef3

Browse files
authored
chore: bump to v19 (#90)
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
1 parent 6b3997d commit 04d8ef3

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build-commitfest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ jobs:
7272
set: |
7373
*.args.PG_REPO=https://github.com/postgresql-cfbot/postgresql.git
7474
*.args.PG_BRANCH=${{ env.BRANCH }}
75-
minimal.tags=${{ env.registry }}/postgresql-trunk:18-minimal-${{ env.TAG }}
76-
standard.tags=${{ env.registry }}/postgresql-trunk:18-standard-${{ env.TAG }}
77-
postgis.tags=${{ env.registry }}/postgresql-trunk:18-postgis-${{ env.TAG }}
75+
minimal.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-minimal-${{ env.TAG }}
76+
standard.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-standard-${{ env.TAG }}
77+
postgis.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-postgis-${{ env.TAG }}
7878
push: true
7979

8080
# Get a list of the images that were built and pushed.

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
set: |
7272
*.args.PG_REPO=${{ github.event.inputs.pg_repo }}
7373
*.args.PG_BRANCH=${{ github.event.inputs.pg_branch }}
74-
minimal.tags=${{ env.registry }}/postgresql-trunk:18-minimal-${{ github.run_number }}
75-
standard.tags=${{ env.registry }}/postgresql-trunk:18-standard-${{ github.run_number }}
76-
postgis.tags=${{ env.registry }}/postgresql-trunk:18-postgis-${{ github.run_number }}
74+
minimal.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-minimal-${{ github.run_number }}
75+
standard.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-standard-${{ github.run_number }}
76+
postgis.tags=${{ env.registry }}/postgresql-trunk:${{ env.PG_MAJOR }}-postgis-${{ github.run_number }}
7777
push: true
7878

7979
# Get a list of the images that were built and pushed.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ FROM $BASE AS build-layer
2323

2424
ARG PG_REPO=https://git.postgresql.org/git/postgresql.git
2525
ARG PG_BRANCH=master
26-
ARG PG_MAJOR=18
26+
ARG PG_MAJOR=19
2727

2828
COPY build-deps.txt /
2929

defaults.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"PG_IMAGE": "ghcr.io/cloudnative-pg/postgresql-trunk:18-minimal-bookworm",
3-
"PG_MAJOR": 18,
2+
"PG_IMAGE": "ghcr.io/cloudnative-pg/postgresql-trunk:19-minimal-bookworm",
3+
"PG_MAJOR": 19,
44
"CNPG_BRANCH": "main",
55
"TEST_DEPTH": 4,
66
"FEATURE_TYPE": ""

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ variable "revision" {
3939
}
4040

4141
variable "pgMajor" {
42-
default = "18"
42+
default = "19"
4343
}
4444

4545
fullname = ( environment == "testing") ? "${registry}/postgresql-trunk-testing" : "${registry}/postgresql-trunk"

0 commit comments

Comments
 (0)