mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
b64c4e94cf
Fix ipv6 bind on travis
34 lines
501 B
YAML
34 lines
501 B
YAML
language: php
|
|
sudo: true
|
|
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
- 7.4
|
|
- nightly
|
|
|
|
env:
|
|
global:
|
|
- REPORT_EXIT_STATUS=1
|
|
|
|
before_script:
|
|
- sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
|
|
|
|
before_install:
|
|
- chmod +x travis-install.sh
|
|
|
|
install: ./travis-install.sh
|
|
|
|
script:
|
|
- php run-tests.php -p `which php` --offline --show-diff --set-timeout 120
|
|
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#php-uv"
|
|
skip_join: true
|
|
use_notice: true
|