mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
395ef4efb7
* PHP-5.5: fixup, both catched by nikic use another character device in this test as /dev/console seems that it is different for lxc containers the de_DE(iso-8859-1) locale is not available on ubuntu by default, but there is no reason to require that over the utf-8 one let's try running our testsuite without sudo
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
language: c
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- locales
|
|
- language-pack-de
|
|
- re2c
|
|
- libgmp-dev
|
|
- libicu-dev
|
|
- libmcrypt-dev
|
|
- libtidy-dev
|
|
- libenchant-dev
|
|
- libaspell-dev
|
|
- libpspell-dev
|
|
- librecode-dev
|
|
|
|
notifications:
|
|
email:
|
|
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
|
|
|
|
cache:
|
|
- apt
|
|
|
|
env:
|
|
global:
|
|
- MYSQL_TEST_HOST=127.0.0.1
|
|
- MYSQL_TEST_USER=travis
|
|
- PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1;dbname=test"
|
|
- PDO_MYSQL_TEST_USER=travis
|
|
- PDO_MYSQL_TEST_PASS=
|
|
- PDO_MYSQL_TEST_HOST=127.0.0.1
|
|
- REPORT_EXIT_STATUS=1
|
|
matrix:
|
|
- ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
|
|
- ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1
|
|
|
|
before_script:
|
|
# Compile PHP
|
|
- ./travis/compile.sh
|
|
# 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:
|
|
- ./sapi/cli/php run-tests.php -p `pwd`/sapi/cli/php -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --offline --show-diff --set-timeout 120
|
|
- ./sapi/cli/php sapi/phpdbg/tests/run-tests.php -diff2stdout --phpdbg sapi/phpdbg/phpdbg
|