From aa36f713ee0a39897cce438b5639db03ae4a0ac4 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Thu, 10 Oct 2024 12:42:38 +0200 Subject: [PATCH] windows: add zstandard package Windows does not have zstd by default so we need to install it. In particular I am looking at switching the repo archive to zstd as this makes things much faster (over 1min in podman)[1] but the windows testing is unable to extract that. While archiver added zstd support a while back it is not in the version that is on chocolatey which seems a bit out of date. [1] https://github.com/containers/podman/pull/24120 Signed-off-by: Paul Holzinger --- win_images/win_packaging.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win_images/win_packaging.ps1 b/win_images/win_packaging.ps1 index b810e4bf..8e73c284 100644 --- a/win_images/win_packaging.ps1 +++ b/win_images/win_packaging.ps1 @@ -9,7 +9,7 @@ iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocola # Install basic required tooling. # psexec needed to workaround session 0 WSL bug -retryInstall git archiver psexec golang mingw StrawberryPerl; Check-Exit +retryInstall git archiver psexec golang mingw StrawberryPerl zstandard; Check-Exit # Update service is required for dotnet Set-Service -Name wuauserv -StartupType "Manual"; Check-Exit