]> git.openstreetmap.org Git - nominatim.git/blob - .github/workflows/ci-tests.yml
e0e68a9c42303af52b52bf0a0a76695ef9ad552c
[nominatim.git] / .github / workflows / ci-tests.yml
1 name: CI Tests
2
3 on: [ push, pull_request ]
4
5 jobs:
6     tests:
7         runs-on: ubuntu-20.04
8
9         strategy:
10             matrix:
11                 postgresql: [9.5, 13]
12                 include:
13                     - postgresql: 9.5
14                       postgis: 2.5
15                     - postgresql: 13
16                       postgis: 3
17
18         steps:
19             - uses: actions/checkout@v2
20               with:
21                   submodules: true
22                   path: Nominatim
23
24             - name: Setup PHP
25               uses: shivammathur/setup-php@v2
26               with:
27                   php-version: '7.4'
28                   tools: phpunit, phpcs
29
30             - name: Get Date
31               id: get-date
32               run: |
33                   echo "::set-output name=date::$(/bin/date -u "+%Y%W")"
34               shell: bash
35
36             - uses: actions/cache@v2
37               with:
38                   path: |
39                      country_grid.sql.gz
40                   key: nominatim-country-data-${{ steps.get-date.outputs.date }}
41
42             - uses: ./Nominatim/.github/actions/setup-postgresql
43               with:
44                   postgresql-version: ${{ matrix.postgresql }}
45                   postgis-version: ${{ matrix.postgis }}
46             - uses: ./Nominatim/.github/actions/build-nominatim
47
48             - name: Install test prerequsites
49               run: sudo apt-get install -y -qq php-codesniffer pylint python3-pytest python3-behave
50
51             - name: PHP linting
52               run: phpcs --report-width=120 .
53               working-directory: Nominatim
54
55             - name: Python linting
56               run: pylint --extension-pkg-whitelist=osmium nominatim
57               working-directory: Nominatim
58
59             - name: PHP unit tests
60               run: phpunit ./
61               working-directory: Nominatim/test/php
62
63             - name: Python unit tests
64               run: py.test-3 test/python
65               working-directory: Nominatim
66
67             - name: BDD tests
68               run: behave -DREMOVE_TEMPLATE=1 -DBUILDDIR=$GITHUB_WORKSPACE/build --format=progress3
69               working-directory: Nominatim/test/bdd
70
71     import:
72         runs-on: ubuntu-20.04
73
74         steps:
75             - uses: actions/checkout@v2
76               with:
77                   submodules: true
78                   path: Nominatim
79
80             - name: Get Date
81               id: get-date
82               run: |
83                   echo "::set-output name=date::$(/bin/date -u "+%Y%W")"
84               shell: bash
85
86             - uses: actions/cache@v2
87               with:
88                   path: |
89                      country_grid.sql.gz
90                   key: nominatim-country-data-${{ steps.get-date.outputs.date }}
91
92             - uses: actions/cache@v2
93               with:
94                   path: |
95                      monaco-latest.osm.pbf
96                   key: nominatim-test-data-${{ steps.get-date.outputs.date }}
97
98             - uses: ./Nominatim/.github/actions/setup-postgresql
99               with:
100                   postgresql-version: 13
101                   postgis-version: 3
102             - uses: ./Nominatim/.github/actions/build-nominatim
103
104             - name: Clean installation
105               run: rm -rf Nominatim build
106               shell: bash
107
108             - name: Prepare import environment
109               run: |
110                   if [ ! -f monaco-latest.osm.pbf ]; then
111                       wget --no-verbose https://download.geofabrik.de/europe/monaco-latest.osm.pbf
112                   fi
113                   mkdir data-env
114                   cd data-env
115               shell: bash
116
117             - name: Import
118               run: nominatim import --osm-file ../monaco-latest.osm.pbf
119               shell: bash
120               working-directory: data-env
121
122             - name: Import special phrases
123               run: nominatim special-phrases --from-wiki | psql -d nominatim
124               working-directory: data-env
125
126             - name: Check import
127               run: nominatim admin --check-database
128               working-directory: data-env
129
130             - name: Run update
131               run: |
132                    nominatim replication --init
133                    nominatim replication --once
134               working-directory: data-env
135
136             - name: Run reverse-only import
137               run : nominatim import --osm-file ../monaco-latest.osm.pbf --reverse-only
138               working-directory: data-env
139               env:
140                   NOMINATIM_DATABASE_DSN: pgsql:dbname=reverse