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.
This commit is contained in:
parent
e7cc8d1de8
commit
515acd1736
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ RUN powershell -NoProfile -InputFormat None -Command `
|
||||||
|
|
||||||
# install tools as described in https://llvm.org/docs/GettingStartedVS.html
|
# install tools as described in https://llvm.org/docs/GettingStartedVS.html
|
||||||
# and a few more that were not documented...
|
# 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
|
RUN choco install -y cmake --version 3.15.4
|
||||||
# libcxx requires clang(-cl) to be available
|
# libcxx requires clang(-cl) to be available
|
||||||
RUN choco install -y sccache llvm
|
RUN choco install -y sccache llvm
|
||||||
|
|
Loading…
Reference in a new issue