Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildbot-worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
# workload. At this time the workload isn't present for Build Tools
#--------------------------------------------------------------------

ENV VCPKG_VERSION 2025.03.19
ENV VCPKG_VERSION 2025.04.09
ENV VCPKG_ROOT C:\vcpkg

RUN Install-FromArchive -Name 'vcpkg' -url ('https://github.com/microsoft/vcpkg/archive/refs/tags/{0}.zip' -f $env:VCPKG_VERSION) -archiveRoot ('vcpkg-{0}' -f $env:VCPKG_VERSION) -installationPath $env:VCPKG_ROOT -NoVerify; `
Expand Down
2 changes: 1 addition & 1 deletion msbuild-2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN Install-VSBuildTools2022 -InstallationPath C:\MSVS -Workloads `
# Install LLVM for Clang tooling support
#--------------------------------------------------------------------

ENV LLVM_VERSION 20.1.2
ENV LLVM_VERSION 20.1.4

RUN Register-SystemPath -Path C:\LLVM\bin; `
Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;
Expand Down
6 changes: 3 additions & 3 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ RUN Install-Perl -Version $env:PERL_VERSION -InstallationPath C:\tools\perl;
# Install Python 3
#--------------------------------------------------------------------

ENV PYTHON3_VERSION 3.12.9
ENV PYTHON3_PIP_VERSION 25.0.1
ENV PYTHON3_VERSION 3.12.10
ENV PYTHON3_PIP_VERSION 25.1.1

RUN Install-Python `
-Version $env:PYTHON3_VERSION `
Expand Down Expand Up @@ -108,7 +108,7 @@ RUN gem install webrick -v $env:WEBRICK_VERSION
# Install CMake
#--------------------------------------------------------------------

ENV CMAKE_VERSION 3.31.6
ENV CMAKE_VERSION 3.31.7

RUN Install-CMake -Version $env:CMAKE_VERSION -InstallationPath C:\tools\cmake;

Expand Down
Loading