Skip to content

Commit

Permalink
Install LLVM 19 on aarch64 Windows CI
Browse files Browse the repository at this point in the history
Signed-off-by: Redfire <[email protected]>
  • Loading branch information
Redfire75369 committed Jan 30, 2025
1 parent 913c92a commit 84e15af
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ jobs:
run: |
curl -SL "https://github.com/servo/servo-build-deps/releases/download/msvc-deps/moztools-4.0.zip" --create-dirs -o target/dependencies/moztools.zip
cd target/dependencies && unzip -qo moztools.zip -d .
- name: Install LLVM 19 on aarch64
if: contains(matrix.target, 'aarch64')
run: |
# install due to build errors caused by a bug in llvm 18
# https://github.com/llvm/llvm-project/pull/93235
# remove when windows runner updates to llvm 19
scoop install [email protected] --global
echo "C:\ProgramData\scoop\scoop\apps\llvm\current\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Build Windows
Expand Down

0 comments on commit 84e15af

Please sign in to comment.