mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
e4153e9144
* PHP-5.5: make the travis irc notification a oneliner
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
language: c
|
|
|
|
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_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y libenchant-dev libaspell-dev libpspell-dev librecode-dev
|
|
- sudo cp ./travis/de /var/lib/locales/supported.d/de
|
|
- sudo dpkg-reconfigure locales
|
|
- ./travis/install.sh
|
|
|
|
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
|