]> git.openstreetmap.org Git - nominatim.git/blobdiff - .github/actions/build-nominatim/action.yml
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / .github / actions / build-nominatim / action.yml
index 44c19a22d2c3de8649a9b5901e488a217b5fd432..9bb66df39fa2228484b9b69ad2d4209e8278db08 100644 (file)
@@ -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