mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-26 22:44:44 +03:00
9348fc5e15
This means that the php-symfony-dotenv library is now only needed when using the legacy scripts. This includes the BDD tests which currently still rely on the PHP utils.
30 lines
877 B
YAML
30 lines
877 B
YAML
name: 'Build Nominatim'
|
|
|
|
runs:
|
|
using: "composite"
|
|
|
|
steps:
|
|
- name: Install prerequisits
|
|
run: |
|
|
sudo apt-get install -y -qq libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libpq-dev libproj-dev python3-psycopg2 python3-pyosmium python3-dotenv
|
|
shell: bash
|
|
|
|
- name: Configure
|
|
run: mkdir build && cd build && cmake ..
|
|
shell: bash
|
|
|
|
- name: Build
|
|
run: |
|
|
make -j2 all
|
|
./nominatim refresh --website
|
|
shell: bash
|
|
working-directory: build
|
|
|
|
- name: Download dependencies
|
|
run: |
|
|
if [ ! -f data/country_osm_grid.sql.gz ]; then
|
|
wget --no-verbose -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
|
|
fi
|
|
shell: bash
|
|
|