mirror of
https://github.com/danog/parallel.git
synced 2025-01-22 14:01:14 +01:00
Add travis config
This commit is contained in:
parent
f72dade1ed
commit
c39a5708df
36
.travis.yml
Normal file
36
.travis.yml
Normal file
@ -0,0 +1,36 @@
|
||||
language: php
|
||||
|
||||
php:
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
|
||||
sudo: false
|
||||
|
||||
install:
|
||||
- git clone https://github.com/krakjoe/pthreads.git;
|
||||
pushd pthreads;
|
||||
if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then
|
||||
git checkout master;
|
||||
else
|
||||
git checkout seven;
|
||||
fi;
|
||||
phpize;
|
||||
./configure;
|
||||
make;
|
||||
make install;
|
||||
popd;
|
||||
echo "extension=pthreads.so" >> "$(php -r 'echo php_ini_loaded_file();')";
|
||||
- composer self-update
|
||||
- composer install --no-interaction --prefer-source
|
||||
|
||||
script:
|
||||
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then
|
||||
vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
||||
else
|
||||
phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
||||
fi
|
||||
|
||||
after_script:
|
||||
- composer require satooshi/php-coveralls dev-master
|
||||
- vendor/bin/coveralls -v --exclude-no-stmt;
|
Loading…
x
Reference in New Issue
Block a user