Skip to content

Commit c6274e0

Browse files
authored
Merge pull request #359 from pblottiere/ubuntu_24
Add CI for Ubuntu 24.04
2 parents f1a96dd + 65c97ad commit c6274e0

11 files changed

Lines changed: 150 additions & 38 deletions

.editorconfig

Lines changed: 0 additions & 13 deletions
This file was deleted.

.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:

.github/workflows/jammy_postgres16_postgis33.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Check out repository code
1616
uses: actions/checkout@v2
17-
- name: Install PostgreSQL
17+
- name: Install PostgreSQL and PostGIS
1818
env:
1919
POSTGRESQL_VERSION: 16
2020
POSTGIS_VERSION: 3
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "[ubuntu-24.04] PostgreSQL 13 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: 13
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 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 and PostGIS
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

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Pointcloud #
1+
# Pointcloud
22

33
[![Release][release-image]][releases]
44

55
[release-image]: https://img.shields.io/badge/release-1.2.5-green.svg?style=plastic
6-
[releases]: https://github.com/pgpointcloud/pointcloud/releases
6+
[releases]: https://ubuntu.com/pgpointcloud/pointcloud/releases
77

88
A PostgreSQL extension for storing point cloud (LIDAR) data. See
9-
https://pgpointcloud.github.io/pointcloud/ for more information.
9+
https://pgpointcloud.ubuntu.io/pointcloud/ for more information.
1010

1111
## Continuous integration
1212

13-
| | PostGIS 3.3 | W/O PostGIS |
13+
| | w/o PostGIS | PostGIS 3.3 |
1414
| ------------------ |:-----------:|:-----------:|
15-
| PostgreSQL 13 | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres13_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres13_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) |
16-
| PostgreSQL 14 | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres14_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres14_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) |
17-
| PostgreSQL 15 | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres15_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres15_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) |
18-
| PostgreSQL 16 | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres16_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) | ![](https://img.shields.io/github/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres16_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=github&style=plastic) |
15+
| PostgreSQL 13 | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres13_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres13_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres13_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres13_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) |
16+
| PostgreSQL 14 | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres14_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres14_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres14_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres14_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) |
17+
| PostgreSQL 15 | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres15_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres15_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres15_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres15_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) |
18+
| PostgreSQL 16 | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres16_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres16_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) | ![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/jammy_postgres16_postgis33.yml?branch=master&label=Ubuntu%2022.04&logo=ubuntu)<br />![](https://img.shields.io/ubuntu/actions/workflow/status/pgpointcloud/pointcloud/noble_postgres16_postgis33.yml?branch=master&label=Ubuntu%2024.04&logo=ubuntu) |

0 commit comments

Comments
 (0)