From e857d63d8bf6bf115a9d5db25380f43cd5d93e92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 28 Mar 2023 11:11:23 +0300 Subject: [PATCH] Update the bundled version of llvm-mingw This brings in a version with LLVM/Clang 16.0.0. By rebuilding the container, we also would get the main/official version of LLVM updated to 16.0.0 from Chocolatey. --- containers/agent-windows-vs2019/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/agent-windows-vs2019/Dockerfile b/containers/agent-windows-vs2019/Dockerfile index da6c32c..0c76af9 100644 --- a/containers/agent-windows-vs2019/Dockerfile +++ b/containers/agent-windows-vs2019/Dockerfile @@ -65,10 +65,10 @@ RUN pip install psutil # install python dependencies for the scripts RUN pip install -r https://raw.githubusercontent.com/google/llvm-premerge-checks/main/scripts/requirements.txt -RUN curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20220323/llvm-mingw-20220323-ucrt-x86_64.zip && ` +RUN curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20230320/llvm-mingw-20230320-ucrt-x86_64.zip && ` powershell Expand-Archive llvm-mingw-*-ucrt-x86_64.zip -DestinationPath . && ` del llvm-mingw-*-ucrt-x86_64.zip && ` - ren llvm-mingw-20220323-ucrt-x86_64 llvm-mingw + ren llvm-mingw-20230320-ucrt-x86_64 llvm-mingw # configure Python encoding ENV PYTHONIOENCODING=UTF-8