X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/04ee39467a2c13e81db9c245f8bbef424121296c..4577669213ea392fa7e25a2fce444f387763f4c8:/.github/actions/setup-postgresql/action.yml?ds=sidebyside diff --git a/.github/actions/setup-postgresql/action.yml b/.github/actions/setup-postgresql/action.yml index 416ced5f..7a9590c1 100644 --- a/.github/actions/setup-postgresql/action.yml +++ b/.github/actions/setup-postgresql/action.yml @@ -4,9 +4,6 @@ inputs: postgresql-version: description: 'Version of PostgreSQL to install' required: true - postgis-version: - description: 'Version of Postgis to install' - required: true runs: using: "composite" @@ -14,21 +11,18 @@ runs: steps: - name: Remove existing PostgreSQL run: | + sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y sudo apt-get purge -yq postgresql* - sudo apt install curl ca-certificates gnupg - curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null - sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' sudo apt-get update -qq shell: bash - name: Install PostgreSQL run: | - sudo apt-get install -y -qq --no-install-suggests --no-install-recommends postgresql-client-${PGVER} postgresql-${PGVER}-postgis-${POSTGISVER} postgresql-${PGVER}-postgis-${POSTGISVER}-scripts postgresql-contrib-${PGVER} postgresql-${PGVER} + sudo apt-get install -y -qq --no-install-suggests --no-install-recommends postgresql-client-${PGVER} postgresql-${PGVER}-postgis-3 postgresql-${PGVER}-postgis-3-scripts postgresql-contrib-${PGVER} postgresql-${PGVER} shell: bash env: PGVER: ${{ inputs.postgresql-version }} - POSTGISVER: ${{ inputs.postgis-version }} - name: Adapt postgresql configuration run: |