Skip to content

Commit 8afb380

Browse files
committed
Release 12 through 16, remove 11
1 parent 6cfe79f commit 8afb380

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/ubuntu-packages-and-docker-image.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,6 @@ jobs:
105105
working-directory: pgml-extension
106106
command: pgrx
107107
args: init --pg11=/usr/lib/postgresql/11/bin/pg_config --pg12=/usr/lib/postgresql/12/bin/pg_config --pg13=/usr/lib/postgresql/13/bin/pg_config --pg14=/usr/lib/postgresql/14/bin/pg_config --pg15=/usr/lib/postgresql/15/bin/pg_config
108-
- name: Build Postgres 11
109-
uses: postgresml/gh-actions-cargo@master
110-
with:
111-
working-directory: pgml-extension
112-
command: pgrx
113-
args: package --pg-config /usr/lib/postgresql/11/bin/pg_config
114108
- name: Build Postgres 12
115109
uses: postgresml/gh-actions-cargo@master
116110
with:

packages/postgresml/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function package_name() {
2020
echo "postgresml-$1-$package_version-ubuntu22.04-all.deb"
2121
}
2222

23-
for pg in {11..15}; do
23+
for pg in {12..16}; do
2424
bash ${SCRIPT_DIR}/build.sh ${package_version} ${pg}
2525

2626
if [[ ! -f $(package_name ${pg}) ]]; then

packages/postgresql-pgml/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function package_name() {
2727
echo "postgresql-pgml-${1}_${PACKAGE_VERSION}-ubuntu22.04-${ARCH}.deb"
2828
}
2929

30-
for pg in {11..15}; do
30+
for pg in {12..16}; do
3131
release_dir="$extension_dir/target/release/pgml-pg${pg}"
3232

3333
mkdir -p "$release_dir/DEBIAN"

0 commit comments

Comments
 (0)