Skip to content

Commit db2c207

Browse files
committed
Add PostgreSQL 17 pipeline
1 parent e81e6b2 commit db2c207

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "[ubuntu-22.04] PostgreSQL 17 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-22.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: 17
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)