From 515acd1736abf69888b2da370e708fadfa779d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 17 Mar 2021 13:11:31 +0200 Subject: [PATCH] windows: Install a specific version of ActivePerl The current default version in Chocolatey (5.28) fails to install, with the following error: ERROR: The response content cannot be parsed because the Internet Explorer engine is not available, or Internet Explorer's first-launch configuration is not complete. Specify the UseBasicParsing parameter and try again. This is fixed in a newer version of packaging of ActivePerl, thus request this particular version. --- containers/agent-windows-vs2019/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containers/agent-windows-vs2019/Dockerfile b/containers/agent-windows-vs2019/Dockerfile index 8011361..e51b941 100644 --- a/containers/agent-windows-vs2019/Dockerfile +++ b/containers/agent-windows-vs2019/Dockerfile @@ -40,7 +40,8 @@ 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 gnuwin activeperl +RUN choco install -y ninja git python3 gnuwin +RUN choco install -y activeperl --version 5.28.0.20210106 RUN choco install -y cmake --version 3.15.4 # libcxx requires clang(-cl) to be available RUN choco install -y sccache llvm