-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install LLVM 19 on aarch64 Windows CI
Signed-off-by: Redfire <[email protected]>
- Loading branch information
1 parent
913c92a
commit 84e15af
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|