Skip to content

Commit 5e093f4

Browse files
committed
Add pipelines for PostgreSQL 14, 15, 16 on Ubuntu 24.04
1 parent 03c1fce commit 5e093f4

File tree

6 files changed

+85
-3
lines changed

6 files changed

+85
-3
lines changed

.github/workflows/jammy_postgres13_postgis33.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "[ubuntu-22.04] PostgreSQL 12 and PostGIS 3.3"
1+
name: "[ubuntu-22.04] PostgreSQL 13 and PostGIS 3.3"
22

33
on:
44
push:

.github/workflows/jammy_postgres14_postgis33.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "[ubuntu-22.04] PostgreSQL 12 and PostGIS 3.3"
1+
name: "[ubuntu-22.04] PostgreSQL 14 and PostGIS 3.3"
22

33
on:
44
push:

.github/workflows/jammy_postgres15_postgis33.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "[ubuntu-22.04] PostgreSQL 12 and PostGIS 3.3"
1+
name: "[ubuntu-22.04] PostgreSQL 15 and PostGIS 3.3"
22

33
on:
44
push:
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "[ubuntu-24.04] PostgreSQL 14 and PostGIS 3.3"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: Building and testing
12+
runs-on: ubuntu-24.04
13+
steps:
14+
- name: Check out repository code
15+
uses: actions/checkout@v2
16+
- name: Install PostgreSQL and PostGIS
17+
env:
18+
POSTGRESQL_VERSION: 14
19+
POSTGIS_VERSION: 3
20+
run: .github/scripts/postgresql_postgis.sh
21+
- name: Install and check PgPointCloud
22+
run: .github/scripts/pgpointcloud.sh
23+
- name: Error
24+
if: ${{ failure() }}
25+
run: cat pgsql/regression.diffs
26+
- name: Dump and restore tests
27+
run: .github/scripts/test_dump_restore.sh
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "[ubuntu-24.04] PostgreSQL 15 and PostGIS 3.3"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: Building and testing
12+
runs-on: ubuntu-24.04
13+
steps:
14+
- name: Check out repository code
15+
uses: actions/checkout@v2
16+
- name: Install PostgreSQL and PostGIS
17+
env:
18+
POSTGRESQL_VERSION: 15
19+
POSTGIS_VERSION: 3
20+
run: .github/scripts/postgresql_postgis.sh
21+
- name: Install and check PgPointCloud
22+
run: .github/scripts/pgpointcloud.sh
23+
- name: Error
24+
if: ${{ failure() }}
25+
run: cat pgsql/regression.diffs
26+
- name: Dump and restore tests
27+
run: .github/scripts/test_dump_restore.sh
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "[ubuntu-24.04] PostgreSQL 16 and PostGIS 3.3"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
name: Building and testing
13+
runs-on: ubuntu-24.04
14+
steps:
15+
- name: Check out repository code
16+
uses: actions/checkout@v2
17+
- name: Install PostgreSQL
18+
env:
19+
POSTGRESQL_VERSION: 16
20+
POSTGIS_VERSION: 3
21+
run: .github/scripts/postgresql_postgis.sh
22+
- name: Install and check PgPointCloud
23+
run: .github/scripts/pgpointcloud.sh
24+
- name: Error
25+
if: ${{ failure() }}
26+
run: cat pgsql/regression.diffs
27+
- name: Dump and restore tests
28+
run: .github/scripts/test_dump_restore.sh

0 commit comments

Comments
 (0)