Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG POSTGIS_VERSION=14-3.2
ARG POSTGIS_VERSION=16-3.5
FROM postgis/postgis:${POSTGIS_VERSION}

# System deps
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/docker-test-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,20 @@ on:
jobs:
docker-tests:
name: Docker
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
matrix:
# postgres-postgis version, see available tags https://hub.docker.com/r/postgis/postgis/tags
pgis:
# WARNING: if changing this, make sure tu update `pgis_stable` below
- 13-3.4
- 14-3.4
#- 15-3.3 # Postgis 3.3 requires QGEP datamodel adaptations
# See https://github.com/QGEP/QGEP/issues/825
- 16-3.5
fail-fast: false

env:
# which pgis version to use for :tag images and to generate the dumps attached to the release (must be in the matrix above)
pgis_stable: "14-3.4"
pgis_stable: "16-3.5"

steps:
- uses: actions/checkout@v4
Expand Down