]> git.openstreetmap.org Git - nominatim.git/commitdiff
actions: test import with installed version of Nominatim
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 10 Feb 2021 15:02:14 +0000 (16:02 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 10 Feb 2021 15:17:52 +0000 (16:17 +0100)
.github/actions/build-nominatim/action.yml
.github/workflows/ci-tests.yml

index 3cd826afea660007359ab8add33132e2ba554389..f65bd3ea51bab6dc0d2eeeb8f40b0b539eb99841 100644 (file)
@@ -9,6 +9,13 @@ runs:
             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: 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
+
         - name: Configure
           run: mkdir build && cd build && cmake ..
           shell: bash
@@ -16,14 +23,6 @@ runs:
         - name: Build
           run: |
               make -j2 all
-              ./nominatim refresh --website
+              sudo make install
           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
-
index 1fa7e19d19674f6e35f6d7da68271f0b2109d037..d5336d4ef52e5cb3fbb6a3fc02ef8dad22ec221e 100644 (file)
@@ -92,36 +92,37 @@ jobs:
                   postgis-version: 3
             - uses: ./.github/actions/build-nominatim
 
-            - name: Download import data
+            - name: Prepare import environment
               run: |
+                  mkdir data-env
+                  cd data-env
                   if [ ! -f monaco-latest.osm.pbf ]; then
                       wget --no-verbose https://download.geofabrik.de/europe/monaco-latest.osm.pbf
                   fi
+                  which nominatim
               shell: bash
 
             - name: Import
-              run: |
-                  mkdir data-env
-                  cd data-env
-                  ../build/nominatim import --osm-file ../monaco-latest.osm.pbf
+              run: nominatim import --osm-file monaco-latest.osm.pbf
               shell: bash
+              working-directory: data-env
 
             - name: Import special phrases
-              run: ../build/nominatim special-phrases --from-wiki | psql -d nominatim
+              run: nominatim special-phrases --from-wiki | psql -d nominatim
               working-directory: data-env
 
             - name: Check import
-              run: ../build/nominatim check-database
+              run: nominatim check-database
               working-directory: data-env
 
             - name: Run update
               run: |
-                   ../build/nominatim replication --init
-                   ../build/nominatim replication --once
+                   nominatim replication --init
+                   nominatim replication --once
               working-directory: data-env
 
             - name: Run reverse-only import
-              run : |
-                  echo 'NOMINATIM_DATABASE_DSN="pgsql:dbname=reverse"' > .env
-                  ../build/nominatim import --osm-file ../monaco-latest.osm.pbf --reverse-only
+              run : nominatim import --osm-file ../monaco-latest.osm.pbf --reverse-only
               working-directory: data-env
+              env:
+                  NOMINATIM_DATABASE_DSN: pgsql:dbname=reverse