Auto merge of #29270 - delan:fix-windows-builds, r=<try>

CI: downgrade to LLVM 14 to work around #29269

(#29269)

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] ~~`./mach build -d` does not report any errors~~
- [ ] ~~`./mach test-tidy` does not report any errors~~
- [ ] These changes fix #___ (GitHub issue number if applicable)

<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because ___

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
This commit is contained in:
bors-servo 2023-01-19 09:00:54 +01:00 committed by GitHub
commit 7a885032e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,11 @@ jobs:
runs-on: windows-2019
needs: ["decision"]
steps:
# FIXME LLVM 15 breaks Windows builds https://github.com/servo/servo/issues/29269
- name: LLVM 14
run: |
$llvmVersion = Get-LatestChocoPackageVersion -TargetVersion 14 -PackageName llvm
Choco-Install -PackageName llvm -ArgumentList '--allow-downgrade', '--version', $llvmVersion
- uses: actions/checkout@v3
with:
fetch-depth: 2
@ -64,6 +69,11 @@ jobs:
runs-on: windows-2019
needs: ["decision"]
steps:
# FIXME LLVM 15 breaks Windows builds https://github.com/servo/servo/issues/29269
- name: LLVM 14
run: |
$llvmVersion = Get-LatestChocoPackageVersion -TargetVersion 14 -PackageName llvm
Choco-Install -PackageName llvm -ArgumentList '--allow-downgrade', '--version', $llvmVersion
- uses: actions/checkout@v3
with:
fetch-depth: 2
@ -90,6 +100,11 @@ jobs:
runs-on: windows-2019
needs: ["decision"]
steps:
# FIXME LLVM 15 breaks Windows builds https://github.com/servo/servo/issues/29269
- name: LLVM 14
run: |
$llvmVersion = Get-LatestChocoPackageVersion -TargetVersion 14 -PackageName llvm
Choco-Install -PackageName llvm -ArgumentList '--allow-downgrade', '--version', $llvmVersion
- uses: actions/checkout@v3
with:
fetch-depth: 2