-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note other changes needed to be made for this: - Add new postgres16, it's misnamed as moment, cause it doesn't have postgis yet - Change postgresql_postgis.sh to: - Use trusted instead of apt-key which is deprecated - Added a condition to postgresql_postgis.sh to skip PostGIS install if no PostGIS version is specified Since PostGIS is not yet available in apt.postgresql.org repo for PG16 - Use pgdg-snapshot instead of main repo except for PG12 (it has all stable branches and main) - For PG12, jsut continue to use main repo, since PostGIS 2.5 is not carried in snapshot
- Loading branch information
Showing
2 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "[ubuntu-22.04] PostgreSQL 16 and PostGIS 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: 16 | ||
#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 |