diff options
author | Mukilan Thiyagarajan <mukilan.thiagarajan@gmail.com> | 2023-01-24 17:59:57 +0530 |
---|---|---|
committer | Mukilan Thiyagarajan <mukilan.thiagarajan@gmail.com> | 2023-01-24 20:46:34 +0530 |
commit | a9ccf935adb178faced5da60944bb4bea38fad7f (patch) | |
tree | 55be2af57787995b4b79ae86c281b1419d40c5f2 | |
parent | 941bd6a579fed893db557ce447af443a719d69a2 (diff) | |
download | servo-a9ccf935adb178faced5da60944bb4bea38fad7f.tar.gz servo-a9ccf935adb178faced5da60944bb4bea38fad7f.zip |
Update LLVM toolchain version for Windows
Windows MSCV nightly builds have been failing
since Jan 18. The failure is similar to the
one @delan identified where the CI build started
to fail after the version of LLVM included in
Github Actions runner images was bumped from
14 to 15.
As discussed on Zulip, we already have support
in ./mach bootstrap to download the LLVM binaries
from our s3 bucket. Following the documented
[process], new LLVM 15.0.5 binaries have been
uploaded to S3.
This PR updates the bootstrap script to use this
new LLVM version.
[process]: https://github.com/servo/servo/wiki/Upgrading-the-windows-LLVM-binaries
Signed-off-by: Mukilan Thiyagarajan <mukilanthiagarajan@gmail.com>
-rw-r--r-- | python/servo/packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/packages.py b/python/servo/packages.py index e076d444eaf..3b375eb2877 100644 --- a/python/servo/packages.py +++ b/python/servo/packages.py @@ -4,7 +4,7 @@ WINDOWS_MSVC = { "cmake": "3.14.3", - "llvm": "14.0.6", + "llvm": "15.0.5", "moztools": "3.2", "ninja": "1.7.1", "nuget": "08-08-2019", |