CI: run tests on older Ubuntu version as well

This commit is contained in:
Sarah Hoffmann
2021-07-05 17:15:07 +02:00
parent 8bc3c0a07c
commit 54f295be52
2 changed files with 31 additions and 9 deletions

View File

@@ -14,9 +14,9 @@ runs:
run: | run: |
sudo apt-get install -y -qq libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libpq-dev libproj-dev libicu-dev sudo apt-get install -y -qq libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libpq-dev libproj-dev libicu-dev
if [ "x$UBUNTUVER" == "x18" ]; then if [ "x$UBUNTUVER" == "x18" ]; then
pip3 install python-dotenv psycopg2==2.7.7 jinja2==2.8 psutil==5.4.2 pyicu osmium pip3 install python-dotenv psycopg2==2.7.7 jinja2==2.8 psutil==5.4.2 pyicu osmium PyYAML==5.1 datrie
else else
sudo apt-get install -y -qq python3-icu python3-datrie python3-pyosmium python3-jinja2 python3-psutil python3-psycopg2 python3-dotenv sudo apt-get install -y -qq python3-icu python3-datrie python3-pyosmium python3-jinja2 python3-psutil python3-psycopg2 python3-dotenv python3-yaml
fi fi
shell: bash shell: bash
env: env:

View File

@@ -4,16 +4,20 @@ on: [ push, pull_request ]
jobs: jobs:
tests: tests:
runs-on: ubuntu-20.04
strategy: strategy:
matrix: matrix:
postgresql: [9.5, 13] ubuntu: [18, 20]
include: include:
- postgresql: 9.5 - ubuntu: 18
postgresql: 9.5
postgis: 2.5 postgis: 2.5
- postgresql: 13 pytest: pytest
- ubuntu: 20
postgresql: 13
postgis: 3 postgis: 3
pytest: py.test-3
runs-on: ubuntu-${{ matrix.ubuntu }}.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -27,6 +31,11 @@ jobs:
php-version: '7.4' php-version: '7.4'
tools: phpunit, phpcs, composer tools: phpunit, phpcs, composer
- uses: actions/setup-python@v2
with:
python-version: 3.6
if: matrix.ubuntu == 18
- name: Get Date - name: Get Date
id: get-date id: get-date
run: | run: |
@@ -43,17 +52,27 @@ jobs:
with: with:
postgresql-version: ${{ matrix.postgresql }} postgresql-version: ${{ matrix.postgresql }}
postgis-version: ${{ matrix.postgis }} postgis-version: ${{ matrix.postgis }}
- uses: ./Nominatim/.github/actions/build-nominatim - uses: ./Nominatim/.github/actions/build-nominatim
with:
ubuntu: ${{ matrix.ubuntu }}
- name: Install test prerequsites - name: Install test prerequsites
run: sudo apt-get install -y -qq php-codesniffer pylint python3-pytest python3-behave python3-pytest-cov php-codecoverage php-xdebug run: sudo apt-get install -y -qq php-codesniffer pylint python3-pytest python3-behave python3-pytest-cov php-codecoverage php-xdebug
if: matrix.ubuntu == 20
- name: Install test prerequsites
run: |
sudo apt-get install -y -qq php-codesniffer php-codecoverage php-xdebug
pip3 install pylint==2.6.0 pytest pytest-cov behave==1.2.6
if: matrix.ubuntu == 18
- name: PHP linting - name: PHP linting
run: phpcs --report-width=120 . run: phpcs --report-width=120 .
working-directory: Nominatim working-directory: Nominatim
- name: Python linting - name: Python linting
run: pylint --extension-pkg-whitelist=osmium nominatim run: pylint nominatim
working-directory: Nominatim working-directory: Nominatim
- name: PHP unit tests - name: PHP unit tests
@@ -61,11 +80,14 @@ jobs:
working-directory: Nominatim/test/php working-directory: Nominatim/test/php
- name: Python unit tests - name: Python unit tests
run: py.test-3 --cov=nominatim --cov-report=xml test/python run: $PYTEST --cov=nominatim --cov-report=xml test/python
working-directory: Nominatim working-directory: Nominatim
env:
PYTEST: ${{ matrix.pytest }}
- name: BDD tests - name: BDD tests
run: | run: |
mkdir cov
behave -DREMOVE_TEMPLATE=1 -DBUILDDIR=$GITHUB_WORKSPACE/build --format=progress3 -DPHPCOV=./cov behave -DREMOVE_TEMPLATE=1 -DBUILDDIR=$GITHUB_WORKSPACE/build --format=progress3 -DPHPCOV=./cov
composer require phpunit/phpcov:7.0.2 composer require phpunit/phpcov:7.0.2
vendor/bin/phpcov merge --clover ../../coverage-bdd.xml ./cov vendor/bin/phpcov merge --clover ../../coverage-bdd.xml ./cov