X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/7bc0fc96119b6b3345e5d26533361504d44eae27..ff341985699f8148bedf142bea9c5deddaa03b6f:/.github/actions/build-nominatim/action.yml diff --git a/.github/actions/build-nominatim/action.yml b/.github/actions/build-nominatim/action.yml index 44c19a22..d0a89774 100644 --- a/.github/actions/build-nominatim/action.yml +++ b/.github/actions/build-nominatim/action.yml @@ -4,22 +4,26 @@ 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 postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-server-dev-13 python3-psycopg2 python3-pyosmium - shell: bash + - name: Install prerequisites + 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 + shell: bash - - name: Configure - run: mkdir build && cd build && cmake .. - shell: bash + - name: Download dependencies + run: | + if [ ! -f country_grid.sql.gz ]; then + wget --no-verbose https://www.nominatim.org/data/country_grid.sql.gz + fi + cp country_grid.sql.gz Nominatim/data/country_osm_grid.sql.gz + shell: bash - - name: Build - run: | - make -j2 all - ./utils/setup.php --setup-website - shell: bash - working-directory: build - - - name: Download dependencies - run: wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz - shell: bash + - name: Configure + run: mkdir build && cd build && cmake ../Nominatim + shell: bash + - name: Build + run: | + make -j2 all + sudo make install + shell: bash + working-directory: build