summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavey Shafik <davey@php.net>2020-10-27 13:39:38 +0000
committerGitHub <noreply@github.com>2020-10-27 13:39:38 +0000
commitba4a1a345cd5ddf7b1c9f26dbd830c1dd1ccbae0 (patch)
treef40ce8e585e6475a2812209aca035a46ded91810
parent6f6c52d748534f50288edf63bba1edfe897bcbf4 (diff)
downloadphp7-mysql-shim-ba4a1a345cd5ddf7b1c9f26dbd830c1dd1ccbae0.zip
php7-mysql-shim-ba4a1a345cd5ddf7b1c9f26dbd830c1dd1ccbae0.tar.gz
php7-mysql-shim-ba4a1a345cd5ddf7b1c9f26dbd830c1dd1ccbae0.tar.bz2
Remove Travis CI in favor of GitHub Actions
-rw-r--r--.travis.yml55
1 files changed, 0 insertions, 55 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 040590c..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-language: php
-services:
- - mysql
-env:
- # composer install (uses lock file)
- #
- # The lock file is only used by developers of the library and ensures
- # a sane dev environment.
- #
- # Everything below local dev PHP version _or_ platform req expected to fail
- - DEPS='lock'
- # composer update --prefer-lowest
- #
- # Ensures that the lowest possible versions will work
- #
- - DEPS='low'
- # composer update
- #
- # This uses the latest possible dependencies for the given PHP version.
- #
- # If a platform requirement is set, this may not be actual latest versions
- # and they may be incompatible with newer PHP versions if the PHP requirement is
- # lax (e.g. >=5.3.6 and a platform of 5.3.6 running on 7.0 which doesn't include
- # necessary bug fixes for 7.0)
- - DEPS='high'
-matrix:
- include:
- - php: 7.1
- - php: 7.2
- - php: 7.3
- - php: 7.4
- - php: nightly
- fast_finish: true
- allow_failures:
- # PHP nightly may fail in all configuration
- - php: nightly
- # PHP < dev version may fail with composer.lock
- # Currently running PHP 7.4
- - php: 7.1
- env: DEPS='lock'
- - php: 7.2
- env: DEPS='lock'
- - php: 7.3
- env: DEPS='lock'
-
-sudo: false
-before_install:
- - composer self-update
-install:
- - if [ "$DEPS" == "lock" ]; then travis_retry composer install --no-interaction --prefer-source; fi;
- - if [ "$DEPS" == "dev" ]; then travis_retry composer update --minimum-stability=dev --no-interaction --prefer-source; fi;
- - if [ "$DEPS" == "low" ]; then travis_retry composer update --prefer-lowest --no-interaction --prefer-source; fi;
- - if [ "$DEPS" == "high" ]; then travis_retry composer update --no-interaction --prefer-source; fi;
-script: php vendor/bin/phpunit
-after_script: if (( `php -r 'echo substr(PHP_VERSION_ID, 0, -2);'` == 704 )); then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover; fi;