]> git.openstreetmap.org Git - nominatim.git/blob - .github/workflows/ci-tests.yml
a1a4344a1105c17c81582298da361f4f25a4731c
[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, composer
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 python3-pytest-cov php-codecoverage php-xdebug
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 --coverage-clover ../../coverage-php.xml ./
61               working-directory: Nominatim/test/php
62
63             - name: Python unit tests
64               run: py.test-3 --cov=nominatim --cov-report=xml test/python
65               working-directory: Nominatim
66
67             - name: BDD tests
68               run: |
69                   behave -DREMOVE_TEMPLATE=1 -DBUILDDIR=$GITHUB_WORKSPACE/build --format=progress3 -DPHPCOV=./cov
70                   composer require phpunit/phpcov:7.0.2
71                   vendor/bin/phpcov merge --clover ../../coverage-bdd.xml ./cov
72               working-directory: Nominatim/test/bdd
73
74             - name: Upload coverage to Codecov
75               uses: codecov/codecov-action@v1
76               with:
77                 files: ./Nominatim/coverage*.xml
78                 directory: ./
79                 name: codecov-umbrella
80                 fail_ci_if_error: true
81                 path_to_write_report: ./coverage/codecov_report.txt
82                 verbose: true
83
84     import:
85         runs-on: ubuntu-20.04
86
87         steps:
88             - uses: actions/checkout@v2
89               with:
90                   submodules: true
91                   path: Nominatim
92
93             - name: Get Date
94               id: get-date
95               run: |
96                   echo "::set-output name=date::$(/bin/date -u "+%Y%W")"
97               shell: bash
98
99             - uses: actions/cache@v2
100               with:
101                   path: |
102                      country_grid.sql.gz
103                   key: nominatim-country-data-${{ steps.get-date.outputs.date }}
104
105             - uses: actions/cache@v2
106               with:
107                   path: |
108                      monaco-latest.osm.pbf
109                   key: nominatim-test-data-${{ steps.get-date.outputs.date }}
110
111             - uses: ./Nominatim/.github/actions/setup-postgresql
112               with:
113                   postgresql-version: 13
114                   postgis-version: 3
115             - uses: ./Nominatim/.github/actions/build-nominatim
116
117             - name: Clean installation
118               run: rm -rf Nominatim build
119               shell: bash
120
121             - name: Prepare import environment
122               run: |
123                   if [ ! -f monaco-latest.osm.pbf ]; then
124                       wget --no-verbose https://download.geofabrik.de/europe/monaco-latest.osm.pbf
125                   fi
126                   mkdir data-env
127                   cd data-env
128               shell: bash
129
130             - name: Import
131               run: nominatim import --osm-file ../monaco-latest.osm.pbf
132               shell: bash
133               working-directory: data-env
134
135             - name: Import special phrases
136               run: nominatim special-phrases --import-from-wiki
137               working-directory: data-env
138
139             - name: Check import
140               run: nominatim admin --check-database
141               working-directory: data-env
142
143             - name: Run update
144               run: |
145                    nominatim replication --init
146                    nominatim replication --once
147               working-directory: data-env
148
149             - name: Run reverse-only import
150               run : nominatim import --osm-file ../monaco-latest.osm.pbf --reverse-only
151               working-directory: data-env
152               env:
153                   NOMINATIM_DATABASE_DSN: pgsql:dbname=reverse