mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
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:
commit
7a885032e6
1 changed files with 15 additions and 0 deletions
15
.github/workflows/main.yml
vendored
15
.github/workflows/main.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue