forked from Wavyzz/dolibarr
* add extrafield point * wip * wip * wip * input * input * output values * update values * update values * update values * update values * update values * wip * add geomapeditor * add geomapeditor * add linestring and polygon * add linestring and polygon * add linestring and polygon * add linestring and polygon * wip * wip * can store and retrieve linestring * can store and retrieve linestring * coordinates are inverted * coordinates are inverted * add multipoints * use text instead binary * auto center map * wip wip * doc * fix * wip * wip * translation dynamic --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
30 lines
559 B
YAML
30 lines
559 B
YAML
# docs available at http://docs.travis-ci.com/user/languages/php/
|
|
# example available at https://github.com/travis-ci/travis-ci-php-example
|
|
language: php
|
|
|
|
before_script:
|
|
- composer self-update
|
|
|
|
env: GEOPHP_RUN_TESTS=1
|
|
|
|
install:
|
|
- composer install
|
|
# TODO Install geos library -- as a matrix test
|
|
# TODO optionally set up a postgis database for testing
|
|
|
|
script:
|
|
- cd tests
|
|
- phpunit --verbose --colors --stderr tests
|
|
- php test.php
|
|
|
|
# run tests on the following versions
|
|
php:
|
|
- 5.6
|
|
- 5.5
|
|
- 5.4
|
|
- 5.3
|
|
- hhvm
|
|
|
|
matrix:
|
|
fast_finish: false
|