2012-05-24 02:20:15 +02:00
|
|
|
language: php
|
|
|
|
|
|
|
|
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-01-22 03:43:52 +01:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi"
|
2013-11-23 21:08:37 +01:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then composer install --dev --no-interaction; fi"
|
2013-01-12 03:03:07 +01:00
|
|
|
|
2012-05-24 02:20:15 +02:00
|
|
|
script:
|
2014-02-15 18:51:09 +01:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phpcs -s --extensions=php --standard=build/code-sniffer-ruleset.xml phpseclib/; fi"
|
2014-02-15 19:57:49 +01:00
|
|
|
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phpcs -s --extensions=php --standard=build/code-sniffer-ruleset-tests.xml tests/; fi"
|
2013-01-16 15:07:39 +01:00
|
|
|
- phpunit --verbose --coverage-text --coverage-html code_coverage/
|
2013-01-14 00:40:30 +01:00
|
|
|
|
|
|
|
after_success:
|
2014-01-22 03:26:42 +01:00
|
|
|
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage.sh; fi"
|