X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/ee4684e6a9ae532e3097de7e0f7104fc825799af..764dcd7f6459c08aafd5cf2fcb7902cc2868cb30:/.github/actions/build-nominatim/action.yml?ds=sidebyside diff --git a/.github/actions/build-nominatim/action.yml b/.github/actions/build-nominatim/action.yml index 44c19a22..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 postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-server-dev-13 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