Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index f646794b30..9ea764c617 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -69,12 +69,20 @@ matrix:
sudo: false
addons: false
# All tests after another
- - php: 7.4
- env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-first-half-only"
+ - php: 8.0
+ env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-first-half-only" SKIP_COMPOSER_INSTALL=1
sudo: required
- - php: 7.4
- env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-second-half-only"
+ before_install:
+ - composer install --ignore-platform-reqs
+ - composer remove --dev phpunit/phpunit
+ - composer require --dev phpunit/phpunit ~9.3 --ignore-platform-reqs
+ - php: 8.0
+ env: TEST_SUITE=AllTests MYSQL_ADAPTER=MYSQLI ALLTEST_EXTRA_OPTIONS="--run-second-half-only" SKIP_COMPOSER_INSTALL=1
sudo: required
+ before_install:
+ - composer install --ignore-platform-reqs
+ - composer remove --dev phpunit/phpunit
+ - composer require --dev phpunit/phpunit ~9.3 --ignore-platform-reqs
# UITests use a specific version because the default 5.5 (== 5.5.38) is missing FreeType support
- php: 7.2
env: TEST_SUITE=UITests MYSQL_ADAPTER=PDO_MYSQL UITEST_EXTRA_OPTIONS="--num-test-groups=3 --test-group=0"