From: Sarah Hoffmann Date: Tue, 5 Mar 2024 15:33:35 +0000 (+0100) Subject: actions: run legacy test against newest postgresql 16 X-Git-Tag: v4.4.0~1^2 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/edb1eec46d0fd222f9b30e0e3d62e906c1c9059e actions: run legacy test against newest postgresql 16 --- diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index d1079375..7ce6320d 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -134,6 +134,10 @@ jobs: needs: create-archive runs-on: ubuntu-20.04 + strategy: + matrix: + postgresql: ["13", "16"] + steps: - uses: actions/download-artifact@v4 with: @@ -149,11 +153,13 @@ jobs: - uses: ./Nominatim/.github/actions/setup-postgresql with: - postgresql-version: 13 + postgresql-version: ${{ matrix.postgresql }} postgis-version: 3 - name: Install Postgresql server dev - run: sudo apt-get install postgresql-server-dev-13 + run: sudo apt-get install postgresql-server-dev-$PGVER + env: + PGVER: ${{ matrix.postgresql }} - uses: ./Nominatim/.github/actions/build-nominatim with: