Fix downloading LLVM in GitHub Action

It turns out LLVM does not include a build for every platform in the
assets for every release, just some of them. As such, I've pinned us to
the latest release version with a corresponding build.
This commit is contained in:
Kevin Svetlitski 2023-06-23 13:30:16 -07:00 committed by Qi Wang
parent f2e00d2fd3
commit 46e464a26b

View File

@ -31,7 +31,7 @@ jobs:
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'llvm/llvm-project'
version: 'latest'
version: 'tags/llvmorg-16.0.4'
file: 'clang[+]llvm-.*x86_64-linux-gnu.*'
regex: true
target: 'llvm_assets/'