---
-language:
- - 'python'
sudo: required
-dist: trusty
+dist: xenial
+language: python
+python:
+ - "3.6"
+addons:
+ postgresql: "9.6"
+git:
+ depth: 3
+env:
+ - TEST_SUITE=tests
+ - TEST_SUITE=monaco
before_install:
- - git submodule update --init --recursive
+ - phpenv global 7.1
install:
- vagrant/install-on-travis-ci.sh
before_script:
- - cd $TRAVIS_BUILD_DIR/build
- - wget --no-verbose --output-document=../data/monaco.osm.pbf http://download.geofabrik.de/europe/monaco-latest.osm.pbf
- - ./utils/setup.php --osm-file ../data/monaco.osm.pbf --osm2pgsql-cache 1000 --all 2>&1 | grep -v 'ETA (seconds)'
- - ./utils/specialphrases.php --countries > ../data/specialphrases_countries.sql
- - psql -d nominatim -f ../data/specialphrases_countries.sql
+ - psql -U postgres -c "create extension postgis"
script:
- - cd $TRAVIS_BUILD_DIR/tests-php
- - phpunit ./
- - cd $TRAVIS_BUILD_DIR/tests
- - lettuce --verbosity=2 features/api
- - lettuce --verbosity=2 features/db
- - lettuce --verbosity=2 features/osm2pgsql
+ - cd $TRAVIS_BUILD_DIR/
+ - if [[ $TEST_SUITE == "tests" ]]; then phpcs --report-width=120 . ; fi
+ - cd $TRAVIS_BUILD_DIR/test/php
+ - if [[ $TEST_SUITE == "tests" ]]; then /usr/bin/phpunit ./ ; fi
+ - cd $TRAVIS_BUILD_DIR/test/bdd
+ - # behave --format=progress3 api
+ - if [[ $TEST_SUITE == "tests" ]]; then behave -DREMOVE_TEMPLATE=1 --format=progress3 db ; fi
+ - if [[ $TEST_SUITE == "tests" ]]; then behave --format=progress3 osm2pgsql ; fi
+ - cd $TRAVIS_BUILD_DIR/build
+ - if [[ $TEST_SUITE == "monaco" ]]; then wget --no-verbose --output-document=../data/monaco.osm.pbf http://download.geofabrik.de/europe/monaco-latest.osm.pbf; fi
+ - if [[ $TEST_SUITE == "monaco" ]]; then /usr/bin/env php ./utils/setup.php --osm-file ../data/monaco.osm.pbf --osm2pgsql-cache 1000 --all 2>&1 | grep -v 'ETA (seconds)'; fi
+ - if [[ $TEST_SUITE == "monaco" ]]; then /usr/bin/env php ./utils/specialphrases.php --wiki-import | psql -d test_api_nominatim >/dev/null; fi
+ - if [[ $TEST_SUITE == "monaco" ]]; then /usr/bin/env php ./utils/check_import_finished.php; fi
+notifications:
+ email: false