Skip to content

Commit da697f2

Browse files
authored
Merge pull request #12000 from greg0ire/fix-var-name
Use the correct environment variable name for lazy objects and enable them by default
2 parents ab89517 + 4f47a80 commit da697f2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,27 @@ jobs:
4343
- "pdo_sqlite"
4444
deps:
4545
- "highest"
46-
lazy_proxy:
46+
native_lazy:
4747
- "0"
4848
include:
4949
- php-version: "8.2"
5050
dbal-version: "4@dev"
5151
extension: "pdo_sqlite"
52-
lazy_proxy: "0"
52+
native_lazy: "0"
5353
- php-version: "8.2"
5454
dbal-version: "4@dev"
5555
extension: "sqlite3"
56-
lazy_proxy: "0"
56+
native_lazy: "0"
5757
- php-version: "8.1"
5858
dbal-version: "default"
5959
deps: "lowest"
6060
extension: "pdo_sqlite"
61-
lazy_proxy: "0"
61+
native_lazy: "0"
6262
- php-version: "8.4"
6363
dbal-version: "default"
6464
deps: "highest"
6565
extension: "pdo_sqlite"
66-
lazy_proxy: "1"
66+
native_lazy: "1"
6767

6868
steps:
6969
- name: "Checkout"
@@ -93,18 +93,18 @@ jobs:
9393
run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml --coverage-clover=coverage-no-cache.xml"
9494
env:
9595
ENABLE_SECOND_LEVEL_CACHE: 0
96-
ENABLE_LAZY_PROXY: ${{ matrix.lazy_proxy }}
96+
ENABLE_NATIVE_LAZY_OBJECTS: ${{ matrix.native_lazy }}
9797

9898
- name: "Run PHPUnit with Second Level Cache"
9999
run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml --exclude-group performance,non-cacheable,locking_functional --coverage-clover=coverage-cache.xml"
100100
env:
101101
ENABLE_SECOND_LEVEL_CACHE: 1
102-
ENABLE_LAZY_PROXY: ${{ matrix.lazy_proxy }}
102+
ENABLE_NATIVE_LAZY_OBJECTS: ${{ matrix.native_lazy }}
103103

104104
- name: "Upload coverage file"
105105
uses: "actions/upload-artifact@v4"
106106
with:
107-
name: "phpunit-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-${{ matrix.deps }}-${{ matrix.lazy_proxy }}-coverage"
107+
name: "phpunit-${{ matrix.extension }}-${{ matrix.php-version }}-${{ matrix.dbal-version }}-${{ matrix.deps }}-${{ matrix.native_lazy }}-coverage"
108108
path: "coverage*.xml"
109109

110110

0 commit comments

Comments
 (0)