forked from hans/Nominatim
actions: run tests also on postgresql 9.5
This is the oldest version for which a postgis is available.
This commit is contained in:
35
.github/actions/setup-postgresql/action.yml
vendored
35
.github/actions/setup-postgresql/action.yml
vendored
@@ -1,26 +1,45 @@
|
|||||||
name: 'Setup Postgresql and Postgis'
|
name: 'Setup Postgresql and Postgis'
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
postgresql-version:
|
||||||
|
description: 'Version of PostgreSQL to install'
|
||||||
|
required: true
|
||||||
|
postgis-version:
|
||||||
|
description: 'Version of Postgis to install'
|
||||||
|
required: true
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install postgis
|
- name: Remove existing PostgreSQL
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -qq
|
sudo apt-get update -qq
|
||||||
sudo apt-get install -y -qq postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-server-dev-13
|
sudo apt-get purge -yq postgresql*
|
||||||
shell: bash
|
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} postgresql-server-dev-${PGVER}
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PGVER: ${{ inputs.postgresql-version }}
|
||||||
|
POSTGISVER: ${{ inputs.postgis-version }}
|
||||||
|
|
||||||
- name: Adapt postgresql configuration
|
- name: Adapt postgresql configuration
|
||||||
run: |
|
run: |
|
||||||
echo 'fsync = off' | sudo tee /etc/postgresql/13/main/conf.d/local.conf
|
echo 'fsync = off' | sudo tee /etc/postgresql/${PGVER}/main/conf.d/local.conf
|
||||||
echo 'synchronous_commit = off' | sudo tee -a /etc/postgresql/13/main/conf.d/local.conf
|
echo 'synchronous_commit = off' | sudo tee -a /etc/postgresql/${PGVER}/main/conf.d/local.conf
|
||||||
echo 'full_page_writes = off' | sudo tee -a /etc/postgresql/13/main/conf.d/local.conf
|
echo 'full_page_writes = off' | sudo tee -a /etc/postgresql/${PGVER}/main/conf.d/local.conf
|
||||||
echo 'shared_buffers = 1GB' | sudo tee -a /etc/postgresql/13/main/conf.d/local.conf
|
echo 'shared_buffers = 1GB' | sudo tee -a /etc/postgresql/${PGVER}/main/conf.d/local.conf
|
||||||
|
echo 'port = 5432' | sudo tee -a /etc/postgresql/${PGVER}/main/conf.d/local.conf
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
PGVER: ${{ inputs.postgresql-version }}
|
||||||
|
|
||||||
- name: Setup database
|
- name: Setup database
|
||||||
run: |
|
run: |
|
||||||
sudo systemctl start postgresql
|
sudo systemctl restart postgresql
|
||||||
sudo -u postgres createuser -S www-data
|
sudo -u postgres createuser -S www-data
|
||||||
sudo -u postgres createuser -s runner
|
sudo -u postgres createuser -s runner
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
15
.github/workflows/ci-tests.yml
vendored
15
.github/workflows/ci-tests.yml
vendored
@@ -6,6 +6,15 @@ jobs:
|
|||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
postgresql: [9.5, 13]
|
||||||
|
include:
|
||||||
|
- postgresql: 9.5
|
||||||
|
postgis: 2.5
|
||||||
|
- postgresql: 13
|
||||||
|
postgis: 3
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
@@ -25,6 +34,9 @@ jobs:
|
|||||||
key: nominatim-data-${{ steps.get-date.outputs.date }}
|
key: nominatim-data-${{ steps.get-date.outputs.date }}
|
||||||
|
|
||||||
- uses: ./.github/actions/setup-postgresql
|
- uses: ./.github/actions/setup-postgresql
|
||||||
|
with:
|
||||||
|
postgresql-version: ${{ matrix.postgresql }}
|
||||||
|
postgis-version: ${{ matrix.postgis }}
|
||||||
- uses: ./.github/actions/build-nominatim
|
- uses: ./.github/actions/build-nominatim
|
||||||
|
|
||||||
- name: Install test prerequsites
|
- name: Install test prerequsites
|
||||||
@@ -65,6 +77,9 @@ jobs:
|
|||||||
key: nominatim-data-${{ steps.get-date.outputs.date }}
|
key: nominatim-data-${{ steps.get-date.outputs.date }}
|
||||||
|
|
||||||
- uses: ./.github/actions/setup-postgresql
|
- uses: ./.github/actions/setup-postgresql
|
||||||
|
with:
|
||||||
|
postgresql-version: 13
|
||||||
|
postgis-version: 3
|
||||||
- uses: ./.github/actions/build-nominatim
|
- uses: ./.github/actions/build-nominatim
|
||||||
|
|
||||||
- name: Create configuration
|
- name: Create configuration
|
||||||
|
|||||||
Reference in New Issue
Block a user