Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/publish_docker_images_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- latest
- alpine
- postgres_17
- postgres_16
- postgres_18
- nightly
steps:
- name: Checkout repository
Expand All @@ -33,7 +33,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Clone tools branch
run: git clone -b v0.8.38 --depth=1 https://github.com/citusdata/tools.git tools
run: git clone -b v0.8.39 --depth=1 https://github.com/citusdata/tools.git tools

- name: Install package dependencies
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_images_on_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Clone tools branch
run: git clone -b v0.8.38 --depth=1 https://github.com/citusdata/tools.git tools
run: git clone -b v0.8.39 --depth=1 https://github.com/citusdata/tools.git tools

- name: Install package dependencies
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_docker_images_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- latest
- alpine
- postgres_17
- postgres_16
- postgres_18
- nightly
steps:
- name: Checkout repository
Expand All @@ -31,7 +31,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Clone tools branch
run: git clone -b v0.8.38 --depth=1 https://github.com/citusdata/tools.git tools
run: git clone -b v0.8.39 --depth=1 https://github.com/citusdata/tools.git tools

- name: Install package dependencies
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_docker_images_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- latest
- alpine
- postgres_17
- postgres_16
- postgres_18
- nightly
steps:
- name: Checkout repository
Expand All @@ -34,7 +34,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Clone tools branch
run: git clone -b v0.8.38 --depth=1 https://github.com/citusdata/tools.git tools
run: git clone -b v0.8.39 --depth=1 https://github.com/citusdata/tools.git tools

- name: Install package dependencies
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources

- name: Clone tools branch
run: git clone -b v0.8.36 --depth=1 https://github.com/citusdata/tools.git tools
run: git clone -b v0.8.39 --depth=1 https://github.com/citusdata/tools.git tools

- name: Set git name and email
run: |
Expand Down
1 change: 0 additions & 1 deletion pkgvars
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
postgres_19_version=19beta3
postgres_18_version=18.4
postgres_17_version=17.10
postgres_16_version=16.14

42 changes: 0 additions & 42 deletions postgres-16/Dockerfile

This file was deleted.

4 changes: 2 additions & 2 deletions postgres-18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is auto generated from it's template,
# see citusdata/tools/packaging_automation/templates/docker/postgres-18/postgres-18.tmpl.dockerfile.
FROM postgres:18.4
ARG VERSION=14.1.0
ARG VERSION=14.2.0
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
Expand All @@ -19,7 +19,7 @@ RUN apt-get update \
ca-certificates \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.1=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.2=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.21.citus-1 \
postgresql-$PG_MAJOR-topn=2.7.1.citus-1 \
&& apt-get purge -y --auto-remove curl \
Expand Down
Loading