Skip to content

Commit 7b0f488

Browse files
authored
Merge pull request #7114 from morozov/appveyor-php-8.4
Fix PHP 8.4 installation on AppVeyor
2 parents 259816b + 9e55bec commit 7b0f488

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ install:
4545
- ps: |
4646
# Check if installation is cached
4747
if (!(Test-Path c:\tools\php)) {
48-
choco upgrade chocolatey
48+
choco upgrade --no-progress chocolatey
49+
choco install --no-progress -y vcredist140
4950
appveyor-retry choco install --no-progress --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
5051
# install sqlite
5152
appveyor-retry choco install --no-progress -y sqlite

0 commit comments

Comments
 (0)