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
1 change: 1 addition & 0 deletions UPDATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ site for updates using the :point_down: table.
| cmake | https://cmake.org/download |
| ninja | https://ninja-build.org |
| nuget | https://www.nuget.org/downloads |
| swift | https://www.swift.org/install/windows |
| llvm | https://github.com/llvm/llvm-project/releases |

Every software in the Dockerfile has a corresponding `_VERSION` environment
Expand Down
11 changes: 11 additions & 0 deletions msbuild-2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ ENV LLVM_VERSION 21.1.8

RUN Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;

#--------------------------------------------------------------------
# Install Swift toolchain
#
# Swift is becoming a required component for building WebKit. It relies
# on the MSVC toolchain and Windows SDK installed above.
#--------------------------------------------------------------------

ENV SWIFT_VERSION 6.3.3

RUN Install-Swift -Version $env:SWIFT_VERSION;

#--------------------------------------------------------------------
# Install Debugging Tools for Windows
#--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN $scriptArgs = @{ `
# Install WebKitDev Module
#--------------------------------------------------------------------

ENV WEBKIT_DEV_VERSION 0.6.4
ENV WEBKIT_DEV_VERSION 0.7.0

RUN $scriptArgs = @{ `
Name = 'WebKitDev'; `
Expand Down