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
4 changes: 2 additions & 2 deletions 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 2024.11.16
ENV VCPKG_VERSION 2024.12.16
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 All @@ -28,7 +28,7 @@ RUN Install-FromArchive -Name 'vcpkg' -url ('https://github.com/microsoft/vcpkg/
# Install buildbot
#--------------------------------------------------------------------

ENV BUILDBOT_VERSION 4.2.0
ENV BUILDBOT_VERSION 4.2.1

RUN Write-Host 'Installing buildbot ...'; `
pip3 install -q ('buildbot-worker=={0}' -f $env:BUILDBOT_VERSION); `
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 19.1.4
ENV LLVM_VERSION 19.1.7

RUN Register-SystemPath -Path C:\LLVM\bin; `
Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;
Expand Down
2 changes: 1 addition & 1 deletion scm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
# Install Git for Windows x64 CLI
#--------------------------------------------------------------------

ENV GIT_VERSION 2.47.1.1
ENV GIT_VERSION 2.47.1.2

RUN Install-Git -Version $env:GIT_VERSION;

Expand Down
8 changes: 4 additions & 4 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN Install-Perl -Version $env:PERL_VERSION -InstallationPath C:\tools\perl;
# Install Python 3
#--------------------------------------------------------------------

ENV PYTHON3_VERSION 3.12.7
ENV PYTHON3_VERSION 3.12.8
ENV PYTHON3_PIP_VERSION 24.3.1

RUN Install-Python `
Expand Down Expand Up @@ -100,15 +100,15 @@ RUN Install-Ruby -Version $env:RUBY_VERSION -InstallationPath C:\tools\ruby;
# Install webrick gem
#--------------------------------------------------------------------

ENV WEBRICK_VERSION 1.9.0
ENV WEBRICK_VERSION 1.9.1

RUN gem install webrick -v $env:WEBRICK_VERSION

#--------------------------------------------------------------------
# Install CMake
#--------------------------------------------------------------------

ENV CMAKE_VERSION 3.31.1
ENV CMAKE_VERSION 3.31.4

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

Expand All @@ -124,7 +124,7 @@ RUN Install-Ninja -Version $env:NINJA_VERSION -InstallationPath C:\tools\ninja;
# Install NuGet CLI
#--------------------------------------------------------------------

ENV NUGET_VERSION 6.12.1
ENV NUGET_VERSION 6.12.2

RUN Install-NuGet -Version $env:NUGET_VERSION -InstallationPath C:\tools\nuget;

Expand Down
Loading