Skip to content
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
1 change: 0 additions & 1 deletion .github/workflows/build-citus-community-nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
matrix:
platform:
- el/8
- debian/bullseye
- debian/bookworm
- debian/trixie
- ubuntu/jammy
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
include:
- TARGET_PLATFORM: almalinux,9
POSTGRES_VERSION: 19
- TARGET_PLATFORM: debian,bullseye
- TARGET_PLATFORM: debian,bookworm
- TARGET_PLATFORM: debian,trixie
- TARGET_PLATFORM: ubuntu,jammy
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jobs:
include:
- TARGET_PLATFORM: almalinux,9
POSTGRES_VERSION: 19
- TARGET_PLATFORM: debian,bullseye
- TARGET_PLATFORM: debian,bookworm
- TARGET_PLATFORM: debian,trixie
- TARGET_PLATFORM: ubuntu,jammy
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-pgazure-nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
# temporarily removed from nightlies since pg15 beta is not being downloaded for ol/7
# - ol/7
- debian/buster
- debian/bullseye
- ubuntu/bionic
- ubuntu/focal

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/image-health-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
include:
- TARGET_PLATFORM: almalinux,9
POSTGRES_VERSION: 19
- TARGET_PLATFORM: debian,bullseye
- TARGET_PLATFORM: debian,bookworm
- TARGET_PLATFORM: debian,trixie
- TARGET_PLATFORM: ubuntu,jammy
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ The build type can be `release`, `nightly`, or any valid git reference. `release

By default, `build_packages` builds on _all_ supported operating systems. Edit `os-list.csv` if you wish to build for fewer.

Debian 11 (Bullseye) is no longer supported following the end of Debian LTS on August 31, 2026. Use Debian 12 (Bookworm) or Debian 13 (Trixie) instead.

### Updating Dockerfiles

`update_dockerfiles` generates a new set of Dockerfiles. This repository has automated builds configured, so if you need to change the Docker images, run `update_dockerfiles`, commit the resulting Dockerfile changes, and push.
Expand Down
5 changes: 5 additions & 0 deletions ci/push_images
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ else
image_name="packaging"
fi

if [[ "${TARGET_PLATFORM:-}" = 'debian,bullseye' ]]; then
echo "${TARGET_PLATFORM} unsupported: Debian LTS ended on 2026-08-31" >&2
exit 1
fi

echo "${DOCKERHUB_PASSWORD}" | docker login -u "${DOCKERHUB_USER_NAME}" --password-stdin

declare args
Expand Down
140 changes: 0 additions & 140 deletions dockerfiles/debian-bullseye-all/Dockerfile

This file was deleted.

1 change: 0 additions & 1 deletion os-list.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
almalinux,8
almalinux,9
debian,bullseye
debian,bookworm
debian,trixie
oraclelinux,8
Expand Down
5 changes: 5 additions & 0 deletions update_image
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ if [[ "${os},${release}" =~ ^ubuntu,(focal|bionic)$ ]]; then
exit 1
fi

if [[ "${os},${release}" = 'debian,bullseye' ]]; then
echo "${TARGET_PLATFORM} unsupported: Debian LTS ended on 2026-08-31" >&2
exit 1
fi

if [[ "${os}" = 'debian' ]] || [[ "${os}" = 'ubuntu' ]]; then
tag="${os}-${release}-all"
args+="build --pull --no-cache -t citus/${image_name}:${tag} -f ${dockerfiles_dir}/${tag}/Dockerfile .\n"
Expand Down
Loading