@@ -95,13 +95,24 @@ jobs:
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"
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"
99
109
run : |
100
110
vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \
101
111
--exclude-group=performance \
102
112
--exclude-group=non-cacheable \
103
113
--exclude-group=locking_functional \
104
114
--coverage-clover=coverage-cache.xml
115
+ if : " ${{ matrix.php-version != '8.1' }}"
105
116
env :
106
117
ENABLE_SECOND_LEVEL_CACHE : 1
107
118
ENABLE_NATIVE_LAZY_OBJECTS : ${{ matrix.native_lazy }}
@@ -324,13 +335,22 @@ jobs:
324
335
env :
325
336
ENABLE_SECOND_LEVEL_CACHE : 0
326
337
327
- - name : " Run PHPUnit with Second Level Cache"
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"
328
347
run : |
329
348
vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml \
330
349
--exclude-group=performance \
331
350
--exclude-group=non-cacheable \
332
351
--exclude-group=locking_functional \
333
352
--coverage-clover=coverage-no-cache.xml"
353
+ if : " ${{ matrix.php-version != '8.1' }}"
334
354
env :
335
355
ENABLE_SECOND_LEVEL_CACHE : 1
336
356
0 commit comments