From a9ccf935adb178faced5da60944bb4bea38fad7f Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Tue, 24 Jan 2023 17:59:57 +0530 Subject: 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 --- python/servo/packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/packages.py') 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", -- cgit v1.2.3