summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2020-09-19 12:19:57 +0100
committerGreg Roach <greg@subaqua.co.uk>2020-09-19 12:19:57 +0100
commitc5152f63cff1c8a4c49f97cdc0f7c52adce33a13 (patch)
tree2b7eca4852a03fb6c086a9b5d3df5a46fd14c9bb /.travis.yml
parent669383b27855acb55006d57190fc902aef8f2278 (diff)
downloadwebtrees-c5152f63cff1c8a4c49f97cdc0f7c52adce33a13.tar.gz
webtrees-c5152f63cff1c8a4c49f97cdc0f7c52adce33a13.tar.bz2
webtrees-c5152f63cff1c8a4c49f97cdc0f7c52adce33a13.zip
Update travis-ci config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 652083659c..4c6f54a4b9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,6 @@ php:
- 7.2
- 7.3
- 7.4
- - nightly
## Non-sudo environments are faster
sudo: false
@@ -21,10 +20,8 @@ before_script:
# Coverage testing is slow, so only do it once.
script:
- - if [ $TRAVIS_PHP_VERSION = 7.4 ]; then vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover tests/clover.xml; fi
- - if [ $TRAVIS_PHP_VERSION = 7.3 ]; then vendor/bin/phpunit -c phpunit.xml.dist; fi
- - if [ $TRAVIS_PHP_VERSION = 7.2 ]; then vendor/bin/phpunit -c phpunit.xml.dist; fi
- - if [ $TRAVIS_PHP_VERSION = 7.1 ]; then vendor/bin/phpunit -c phpunit.xml.dist; fi
+ - if [ $TRAVIS_PHP_VERSION = 7.4 ]; then vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover tests/clover.xml; fi
+ - if [ $TRAVIS_PHP_VERSION != 7.4 ]; then vendor/bin/phpunit -c phpunit.xml.dist; fi
after_script:
- if [ $TRAVIS_PHP_VERSION = 7.4 ]; then travis_retry php vendor/bin/php-coveralls -v; fi