From ffd904922de7dc6a04c9d561db531f2f4827d49c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 23 Apr 2021 10:21:11 +0300 Subject: [PATCH] Install an older version of ActivePerl The current default version in Chocolatey, 5.28, fails to install. This was previously worked around by pinning a newer upcoming version, 5.28.0.20210106. However this version never got approved into Chocolatey (for unknown reasons), so it's no longer available. Therefore instead request the previous older version, 5.24.3.2404001, which installs correctly. --- containers/agent-windows-vs2019/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/agent-windows-vs2019/Dockerfile b/containers/agent-windows-vs2019/Dockerfile index e6c565d..93401e8 100644 --- a/containers/agent-windows-vs2019/Dockerfile +++ b/containers/agent-windows-vs2019/Dockerfile @@ -41,7 +41,7 @@ RUN powershell -NoProfile -InputFormat None -Command ` # install tools as described in https://llvm.org/docs/GettingStartedVS.html # and a few more that were not documented... RUN choco install -y ninja git python3 -RUN choco install -y activeperl --version 5.28.0.20210106 +RUN choco install -y activeperl --version 5.24.3.2404001 RUN choco install -y cmake --version 3.15.4 # libcxx requires clang(-cl) to be available RUN choco install -y sccache llvm