Skip to content

Commit 01074ef

Browse files
minor symfony#61126 do not install ext-zstd on PHP 8.5 (xabbuh)
This PR was merged into the 7.3 branch. Discussion ---------- do not install ext-zstd on PHP 8.5 | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- e1709ad do not install ext-zstd on PHP 8.5
2 parents af5a185 + e1709ad commit 01074ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
- php: '8.3'
3535
- php: '8.4'
3636
- php: '8.5'
37+
# to be removed when ext-zstd is ready for PHP 8.5
38+
extensions: amqp,apcu,brotli,igbinary,intl,mbstring,memcached,redis,relay
3739
#mode: experimental
3840
fail-fast: false
3941

@@ -233,7 +235,7 @@ jobs:
233235
- name: Run AssetMapper without ext-brotli nor ext-zstd
234236
if: "! matrix.mode"
235237
run: |
236-
sudo rm /etc/php/*/cli/conf.d/*-{brotli,zstd}.ini
238+
sudo rm -f /etc/php/*/cli/conf.d/*-{brotli,zstd}.ini
237239
./phpunit src/Symfony/Component/AssetMapper
238240
239241
- name: Run tests with SIGCHLD enabled PHP

0 commit comments

Comments
 (0)