Skip to content

Commit

Permalink
Update LLVM version to 15.0 in CI workflows (#4220)
Browse files Browse the repository at this point in the history
## Issue Addressed

The latest stable version (1.69.0) of Rust was released on 20 April and contains this change:
- [Update the minimum external LLVM to 14.](rust-lang/rust#107573)

This impacts some of our CI workflows (build and release-test-windows) that uses LLVM 13.0. This  PR updates the workflows to install LLVM 15.0.

**UPDATE**: Also updated `h2` to address [this issue](GHSA-f8vr-r385-rh5r)
  • Loading branch information
jimmygchen committed Apr 21, 2023
1 parent 693886b commit ed78248
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -73,7 +73,7 @@ jobs:
- uses: KyleMayes/install-llvm-action@v1
if: startsWith(matrix.arch, 'x86_64-windows')
with:
version: "13.0"
version: "15.0"
directory: ${{ runner.temp }}/llvm
- name: Set LIBCLANG_PATH
if: startsWith(matrix.arch, 'x86_64-windows')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Expand Up @@ -83,7 +83,7 @@ jobs:
run: choco install -y make
- uses: KyleMayes/install-llvm-action@v1
with:
version: "13.0"
version: "15.0"
directory: ${{ runner.temp }}/llvm
- name: Set LIBCLANG_PATH
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ed78248

Please sign in to comment.