mirror of
https://github.com/danog/postgres.git
synced 2024-11-26 20:15:02 +01:00
40 lines
729 B
YAML
40 lines
729 B
YAML
|
sudo: false
|
||
|
|
||
|
language: php
|
||
|
|
||
|
php:
|
||
|
- 7.0
|
||
|
- 7.1
|
||
|
- nightly
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- php: 7.1
|
||
|
- php: nightly
|
||
|
fast_finish: true
|
||
|
|
||
|
services:
|
||
|
- postgresql
|
||
|
|
||
|
install:
|
||
|
- 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
|
||
|
- composer install --no-interaction --prefer-source
|
||
|
|
||
|
before_script:
|
||
|
- psql -c 'CREATE DATABASE test;' -U postgres
|
||
|
|
||
|
script:
|
||
|
- vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
||
|
|
||
|
after_script:
|
||
|
- composer require satooshi/php-coveralls dev-master
|
||
|
- vendor/bin/coveralls -v --exclude-no-stmt
|