2012-05-24 02:20:15 +02:00
|
|
|
language: php
|
|
|
|
|
2014-06-01 13:52:24 +02:00
|
|
|
# When adding environments here, the number of runs specified in .scrutinizer.yml
|
|
|
|
# may have to be adjusted.
|
2012-05-24 02:20:15 +02:00
|
|
|
php:
|
|
|
|
- 5.2
|
2013-01-15 02:51:10 +01:00
|
|
|
- 5.3.3
|
2012-05-24 02:20:15 +02:00
|
|
|
- 5.3
|
|
|
|
- 5.4
|
2013-01-15 16:54:51 +01:00
|
|
|
- 5.5
|
2014-02-13 22:50:04 +01:00
|
|
|
- 5.6
|
2013-12-15 20:17:50 +01:00
|
|
|
- hhvm
|
2012-05-24 02:20:15 +02:00
|
|
|
|
2013-01-14 00:40:30 +01:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
# Defines CODE_COVERAGE_PASSPHRASE which is the passphrase for unlocking
|
2014-01-22 03:26:42 +01:00
|
|
|
# the travis/code_coverage_id_rsa RSA private key.
|
2013-01-14 00:40:30 +01:00
|
|
|
- secure: "jtQTZKQBnzUlp/jz7NlM6470ZDnLGVAs53sgvIm4tcYqf9TWSXSXjIYvFsrS\nKPR2eyZaAevYysUkIGRFTUXTlG6tC36YngMp9+6FPxASl8mnGXsTbKcm613B\n59vD3242pgIgqhhmgFQ0c8gbvnE8PuF2aS4/hluP3r+AxhWN56E="
|
|
|
|
|
2013-01-12 03:03:07 +01:00
|
|
|
before_script:
|
2014-03-03 01:43:58 +01:00
|
|
|
- travis/setup-secure-shell.sh
|
2014-01-22 03:43:52 +01:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi"
|
2014-04-12 06:02:02 +02:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then travis/setup-composer.sh; fi"
|
2013-01-12 03:03:07 +01:00
|
|
|
|
2012-05-24 02:20:15 +02:00
|
|
|
script:
|
2014-04-12 07:47:53 +02:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phing -f build/build.xml sniff; fi"
|
2014-03-03 02:10:01 +01:00
|
|
|
- travis/run-phpunit.sh
|
2013-01-14 00:40:30 +01:00
|
|
|
|
|
|
|
after_success:
|
2014-06-01 13:45:51 +02:00
|
|
|
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage-html.sh; fi"
|
2014-06-01 13:50:10 +02:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' -a '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/upload-code-coverage-scrutinizer.sh; fi"
|