|
95 | 95 | ENABLE_SECOND_LEVEL_CACHE: 0 |
96 | 96 | ENABLE_NATIVE_LAZY_OBJECTS: ${{ matrix.native_lazy }} |
97 | 97 |
|
98 | | - - name: "Run PHPUnit with Second Level Cache" |
99 | | - run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml --exclude-group performance,non-cacheable,locking_functional --coverage-clover=coverage-cache.xml" |
| 98 | + - name: "Run PHPUnit with Second Level Cache and PHPUnit 10" |
| 99 | + run: | |
| 100 | + vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \ |
| 101 | + --exclude-group=performance,non-cacheable,locking_functional \ |
| 102 | + --coverage-clover=coverage-cache.xml |
| 103 | + if: "${{ matrix.php-version == '8.1' }}" |
| 104 | + env: |
| 105 | + ENABLE_SECOND_LEVEL_CACHE: 1 |
| 106 | + ENABLE_NATIVE_LAZY_OBJECTS: ${{ matrix.native_lazy }} |
| 107 | + |
| 108 | + - name: "Run PHPUnit with Second Level Cache and PHPUnit 11+" |
| 109 | + run: | |
| 110 | + vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \ |
| 111 | + --exclude-group=performance \ |
| 112 | + --exclude-group=non-cacheable \ |
| 113 | + --exclude-group=locking_functional \ |
| 114 | + --coverage-clover=coverage-cache.xml |
| 115 | + if: "${{ matrix.php-version != '8.1' }}" |
100 | 116 | env: |
101 | 117 | ENABLE_SECOND_LEVEL_CACHE: 1 |
102 | 118 | ENABLE_NATIVE_LAZY_OBJECTS: ${{ matrix.native_lazy }} |
@@ -319,8 +335,22 @@ jobs: |
319 | 335 | env: |
320 | 336 | ENABLE_SECOND_LEVEL_CACHE: 0 |
321 | 337 |
|
322 | | - - name: "Run PHPUnit with Second Level Cache" |
323 | | - run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml --exclude-group performance,non-cacheable,locking_functional --coverage-clover=coverage-no-cache.xml" |
| 338 | + - name: "Run PHPUnit with Second Level Cache and PHPUnit 10" |
| 339 | + run: | |
| 340 | + vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \ |
| 341 | + --exclude-group=performance,non-cacheable,locking_functional \ |
| 342 | + --coverage-clover=coverage-no-cache.xml" |
| 343 | + if: "${{ matrix.php-version == '8.1' }}" |
| 344 | + env: |
| 345 | + ENABLE_SECOND_LEVEL_CACHE: 1 |
| 346 | + - name: "Run PHPUnit with Second Level Cache and PHPUnit 11+" |
| 347 | + run: | |
| 348 | + vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \ |
| 349 | + --exclude-group=performance \ |
| 350 | + --exclude-group=non-cacheable \ |
| 351 | + --exclude-group=locking_functional \ |
| 352 | + --coverage-clover=coverage-no-cache.xml |
| 353 | + if: "${{ matrix.php-version != '8.1' }}" |
324 | 354 | env: |
325 | 355 | ENABLE_SECOND_LEVEL_CACHE: 1 |
326 | 356 |
|
|
0 commit comments