File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ jobs:
114114 shell : powershell
115115 run : |
116116 # 1. Download the community-provided binary using curl to handle redirects.
117- # The URL was found and verified by the user.
118117 $url = "https://github.com/jefyt/memcached-windows/releases/download/1.6.8_mingw/memcached-1.6.8-win64-mingw.zip"
119118 $zipFile = "memcached.zip"
120119 Write-Host "Downloading Memcached from $url..."
@@ -128,7 +127,6 @@ jobs:
128127 # 3. Start Memcached as a background process.
129128 # The service installation method (-d install) is not suitable for CI environments
130129 # as it requires administrative privileges, which are not available by default.
131- # Running it as a simple process is the most robust and correct approach here.
132130 $execPath = Join-Path -Path $extractDir -ChildPath "memcached-1.6.8-win64-mingw\bin\memcached.exe"
133131 Write-Host "Starting Memcached directly as a background process from $execPath"
134132 Start-Process -FilePath $execPath -ArgumentList "-m 64" -WindowStyle Hidden
You can’t perform that action at this time.
0 commit comments