summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-07-15 09:41:42 +0100
committerGreg Roach <greg@subaqua.co.uk>2021-07-15 09:41:42 +0100
commit08113d4e2583065f6171eefc87f38a8cb8f1baa4 (patch)
treeca8d35e2152141a9689d405ace1ea83c92f9ac58 /.travis.yml
parent287252862f5f600b41287735deddfb542d3b434a (diff)
downloadwebtrees-08113d4e2583065f6171eefc87f38a8cb8f1baa4.tar.gz
webtrees-08113d4e2583065f6171eefc87f38a8cb8f1baa4.tar.bz2
webtrees-08113d4e2583065f6171eefc87f38a8cb8f1baa4.zip
Remove travis config file - free service has shut down
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml29
1 files changed, 0 insertions, 29 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c64c0856ec..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-language: php
-
-matrix:
- include:
- - php: 7.4
- dist: focal
- - php: 8.0
- dist: focal
-
-## Non-sudo environments are faster
-sudo: false
-
-## Cache composer and vendor libraries
-cache:
- directories:
- - vendor
- - $HOME/.composer/cache
-
-before_script:
- - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then composer config github-oauth.github.com "${GITHUB_OAUTH_TOKEN}"; fi
- - travis_retry composer install
-
-# Coverage testing is slow, so only do it once.
-script:
- - if [ $TRAVIS_PHP_VERSION = 7.4 ]; then XDEBUG_MODE=coverage 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