https://git.reactos.org/?p=reactos.git;a=commitdiff;h=83faa2da5ee5925d18308649a1d7f3a5037af7ca
commit 83faa2da5ee5925d18308649a1d7f3a5037af7ca Author: Victor Perevertkin <[email protected]> AuthorDate: Sat Jul 16 16:10:56 2022 +0300 Commit: GitHub <[email protected]> CommitDate: Sat Jul 16 16:10:56 2022 +0300 [GITHUB] Fix LLVM version for the clang-cl build (#4578) --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50f2c5ac91b..e10e19c50ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -225,7 +225,7 @@ jobs: run: choco install -y ninja - name: Install LLVM run: | - choco install -y llvm + choco install -y --allow-downgrade llvm --version 13.0.1 echo "LLVM_PATH=${env:PROGRAMFILES}\llvm\bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Install Flex & Bison run: |
