mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
actions: add import on ubuntu 18.04
This uses oldest possible dependencies where possible.
This commit is contained in:
2
.github/actions/build-nominatim/action.yml
vendored
2
.github/actions/build-nominatim/action.yml
vendored
@@ -6,7 +6,7 @@ runs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Install prerequisites
|
- name: Install prerequisites
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y -qq libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libpq-dev libproj-dev libicu-dev python3-psycopg2 python3-pyosmium python3-dotenv python3-psutil python3-jinja2 python3-icu python3-argparse-manpage
|
sudo apt-get install -y -qq libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libpq-dev libproj-dev libicu-dev python3-psycopg2 python3-pyosmium python3-dotenv python3-psutil python3-jinja2 python3-icu
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Download dependencies
|
- name: Download dependencies
|
||||||
|
|||||||
29
.github/workflows/ci-tests.yml
vendored
29
.github/workflows/ci-tests.yml
vendored
@@ -69,7 +69,18 @@ jobs:
|
|||||||
working-directory: Nominatim/test/bdd
|
working-directory: Nominatim/test/bdd
|
||||||
|
|
||||||
import:
|
import:
|
||||||
runs-on: ubuntu-20.04
|
strategy:
|
||||||
|
matrix:
|
||||||
|
ubuntu: [18, 20]
|
||||||
|
include:
|
||||||
|
- ubuntu: 18
|
||||||
|
postgresql: 9.5
|
||||||
|
postgis: 2.5
|
||||||
|
- ubuntu: 20
|
||||||
|
postgresql: 13
|
||||||
|
postgis: 3
|
||||||
|
|
||||||
|
runs-on: ubuntu-${{ matrix.ubuntu }}.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -95,12 +106,24 @@ jobs:
|
|||||||
monaco-latest.osm.pbf
|
monaco-latest.osm.pbf
|
||||||
key: nominatim-test-data-${{ steps.get-date.outputs.date }}
|
key: nominatim-test-data-${{ steps.get-date.outputs.date }}
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.5
|
||||||
|
if: matrix.ubuntu == 18
|
||||||
|
|
||||||
- uses: ./Nominatim/.github/actions/setup-postgresql
|
- uses: ./Nominatim/.github/actions/setup-postgresql
|
||||||
with:
|
with:
|
||||||
postgresql-version: 13
|
postgresql-version: ${{ matrix.postgresql }}
|
||||||
postgis-version: 3
|
postgis-version: ${{ matrix.postgis }}
|
||||||
- uses: ./Nominatim/.github/actions/build-nominatim
|
- uses: ./Nominatim/.github/actions/build-nominatim
|
||||||
|
|
||||||
|
- name: Install extra dependencies for Ubuntu 18
|
||||||
|
run: |
|
||||||
|
sudo apt-get install libicu-dev
|
||||||
|
pip3 install python-dotenv psycopg2==2.7.7 jinja2==2.8 psutil==5.4.2 pyicu osmium
|
||||||
|
shell: bash
|
||||||
|
if: matrix.ubuntu == 18
|
||||||
|
|
||||||
- name: Clean installation
|
- name: Clean installation
|
||||||
run: rm -rf Nominatim build
|
run: rm -rf Nominatim build
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
Reference in New Issue
Block a user