1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 20:15:02 +01:00
postgres/.travis.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2016-09-14 16:27:39 +02:00
sudo: false
language: php
php:
- 7.0
- 7.1
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
services:
- postgresql
install:
2016-09-14 16:39:10 +02:00
- git clone https://github.com/m6w6/ext-raphf;
2016-09-14 16:47:43 +02:00
pushd ext-raphf;
2016-09-14 16:39:10 +02:00
phpize;
./configure;
make;
make install;
popd;
echo "extension=raphf.so" >> "$(php -r 'echo php_ini_loaded_file();')";
2016-09-14 16:27:39 +02:00
- git clone https://github.com/m6w6/ext-pq;
pushd ext-pq;
phpize;
./configure;
make;
make install;
popd;
echo "extension=pq.so" >> "$(php -r 'echo php_ini_loaded_file();')";
- composer self-update
2017-05-16 06:26:37 +02:00
# --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722
- composer update -n --prefer-dist --ignore-platform-reqs
2016-09-14 16:27:39 +02:00
before_script:
- psql -c 'CREATE DATABASE test;' -U postgres
script:
2017-05-16 06:26:37 +02:00
- phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
2016-09-14 16:27:39 +02:00
after_script:
- composer require satooshi/php-coveralls dev-master
- vendor/bin/coveralls -v --exclude-no-stmt