mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
89218f1da6
- Remove "sudo:false" - Update composer installation paths The Linux infrastructure migration removed support for "sudo:false" -- https://changelog.travis-ci.com/deprecation-container-based-linux-build-environment-82037 -- https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
dist: trusty
|
|
language: php
|
|
|
|
install:
|
|
- composer global require dealerdirect/phpcodesniffer-composer-installer;
|
|
- composer global require phpcompatibility/php-compatibility;
|
|
# Use PHPUnit 6 for unit tests (stable), requires PHP 7
|
|
- if [[ $TRAVIS_PHP_VERSION == "7.0" ]]; then
|
|
composer global require phpunit/phpunit ^6;
|
|
fi
|
|
# Use latest PHPUnit on nightly to detect breaking changes
|
|
- if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
|
|
composer global require phpunit/phpunit;
|
|
fi
|
|
|
|
script:
|
|
- phpenv rehash
|
|
# Run PHP_CodeSniffer on all versions
|
|
- ~/.config/composer/vendor/bin/phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p;
|
|
# Check PHP compatibility for the lowest supported version
|
|
- if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
|
|
~/.config/composer/vendor/bin/phpcs . --standard=phpcompatibility.xml --warning-severity=0 --extensions=php -p;
|
|
fi
|
|
# Run unit tests (stable)
|
|
- if [[ $TRAVIS_PHP_VERSION == "7.0" ]]; then
|
|
phpunit --configuration=phpunit.xml --include-path=lib/;
|
|
fi
|
|
# Run unit tests (latest/nightly)
|
|
# Check PHP compatibility for all versions, starting at the lowest supported version in order to detect breaking changes
|
|
- if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
|
|
phpunit --configuration=phpunit.xml --include-path=lib/;
|
|
~/.config/composer/vendor/bin/phpcs . --standard=PHPCompatibility --warning-severity=0 --extensions=php -p --runtime-set testVersion 5.6-;
|
|
fi
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
include:
|
|
- php: 5.6
|
|
- php: 7.0
|
|
- php: nightly
|
|
|
|
allow_failures:
|
|
- php: nightly
|