X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/bd04c49bc1b8510e2a037acde5c6023c40728673..764dcd7f6459c08aafd5cf2fcb7902cc2868cb30:/.github/actions/build-nominatim/action.yml diff --git a/.github/actions/build-nominatim/action.yml b/.github/actions/build-nominatim/action.yml index c11b0f77..9bb66df3 100644 --- a/.github/actions/build-nominatim/action.yml +++ b/.github/actions/build-nominatim/action.yml @@ -4,22 +4,25 @@ 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 - shell: bash + - 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 + shell: bash - - name: Configure - run: mkdir build && cd build && cmake .. - shell: bash + - name: Configure + run: mkdir build && cd build && cmake .. + shell: bash - - name: Build - run: | - make -j2 all - ./utils/setup.php --setup-website - shell: bash - working-directory: build + - 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: 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