From db2c207f1625cf1308bcda554cc43c333cffd10c Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Sun, 4 May 2025 00:19:29 +0200 Subject: [PATCH] Add PostgreSQL 17 pipeline --- .../workflows/jammy_postgres17_postgis33.yml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/jammy_postgres17_postgis33.yml diff --git a/.github/workflows/jammy_postgres17_postgis33.yml b/.github/workflows/jammy_postgres17_postgis33.yml new file mode 100644 index 0000000..1e221fc --- /dev/null +++ b/.github/workflows/jammy_postgres17_postgis33.yml @@ -0,0 +1,28 @@ +name: "[ubuntu-22.04] PostgreSQL 17 and PostGIS 3.3" + +on: + push: + branches: + - master + + pull_request: + +jobs: + build: + name: Building and testing + runs-on: ubuntu-22.04 + steps: + - name: Check out repository code + uses: actions/checkout@v2 + - name: Install PostgreSQL and PostGIS + env: + POSTGRESQL_VERSION: 17 + POSTGIS_VERSION: 3 + run: .github/scripts/postgresql_postgis.sh + - name: Install and check PgPointCloud + run: .github/scripts/pgpointcloud.sh + - name: Error + if: ${{ failure() }} + run: cat pgsql/regression.diffs + - name: Dump and restore tests + run: .github/scripts/test_dump_restore.sh