php-src/.travis.yml

73 lines
1.8 KiB
YAML
Raw Normal View History

git:
quiet: true
2017-10-25 09:14:51 +08:00
dist: trusty
language: c
sudo: required
addons:
apt:
packages:
- locales
- language-pack-de
- re2c
- libgmp-dev
- libicu-dev
- libtidy-dev
- libenchant-dev
- libaspell-dev
- libpspell-dev
- librecode-dev
- libsasl2-dev
- libxpm-dev
- libt1-dev
notifications:
email:
2014-05-14 08:14:06 +08:00
on_failure: change
irc:
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} - Change view : %{compare_url} - Build details : %{build_url}"
channels:
- "irc.efnet.org#php.pecl"
on_success: change
on_failure: always
2016-05-04 14:09:41 +08:00
cache:
apt: true
ccache: true
2014-07-08 00:35:37 +08:00
env:
2013-08-13 13:57:06 +08:00
global:
- MYSQL_TEST_HOST=127.0.0.1
- MYSQL_TEST_USER=travis
2013-08-14 00:01:17 +08:00
- PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1;dbname=test"
2013-08-13 13:57:06 +08:00
- PDO_MYSQL_TEST_USER=travis
- PDO_MYSQL_TEST_PASS=
- PDO_MYSQL_TEST_HOST=127.0.0.1
2013-08-13 13:57:06 +08:00
- REPORT_EXIT_STATUS=1
matrix:
- ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
- ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1
2012-04-26 19:48:49 +08:00
before_script:
2016-05-04 14:09:41 +08:00
- ccache --version
- ccache --zero-stats
- export USE_CCACHE=1
2018-06-09 03:09:33 +08:00
# Enable IPv6
- sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
# Compile PHP
2012-04-26 19:48:49 +08:00
- ./travis/compile.sh
2016-05-04 14:09:41 +08:00
# Setup Extensions
- . ./travis/ext/mysql/setup.sh
- . ./travis/ext/mysqli/setup.sh
- . ./travis/ext/pdo_mysql/setup.sh
- . ./travis/ext/pgsql/setup.sh
- . ./travis/ext/pdo_pgsql/setup.sh
# Run PHPs run-tests.php
script:
2017-06-03 18:39:50 +08:00
- ./sapi/cli/php run-tests.php -p `pwd`/sapi/cli/php $(if [ $ENABLE_DEBUG == 0 ]; then echo "-d opcache.enable_cli=1 -d zend_extension=`pwd`/modules/opcache.so"; fi) -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --offline --show-diff --show-slow 1000 --set-timeout 120
2016-05-04 14:09:41 +08:00
after_success:
- ccache --show-stats