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

47 lines
927 B
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
- 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