From 42d052e4e7ca1e078da31091feddb2c79d8fc68c Mon Sep 17 00:00:00 2001 From: Sergei Morozov Date: Thu, 14 Nov 2024 15:32:40 -0800 Subject: [PATCH 1/2] Enable Windows Update service on AppVeyor --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index d2bc2af56d..f9a31b2c2b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -44,6 +44,8 @@ init: ## Install PHP and composer, and run the appropriate composer command install: + - sc config wuauserv start=auto + - net start wuauserv - ps: | # Check if installation is cached if (!(Test-Path c:\tools\php)) { From ab9d44647bca8c08e4c3ba751990d61a0405ab96 Mon Sep 17 00:00:00 2001 From: Sergei Morozov Date: Thu, 14 Nov 2024 15:37:55 -0800 Subject: [PATCH 2/2] Disable Choco download progress --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f9a31b2c2b..3d95b8eb25 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -49,9 +49,9 @@ install: - ps: | # Check if installation is cached if (!(Test-Path c:\tools\php)) { - appveyor-retry choco install --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27 + appveyor-retry choco install --no-progress --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27 # install sqlite - appveyor-retry choco install -y sqlite + appveyor-retry choco install --no-progress -y sqlite Get-ChildItem -Path c:\tools\php cd c:\tools\php