Skip to content

Commit 3ac1a1d

Browse files
jimmygchenWoodpile37
authored andcommitted
Update LLVM version to 15.0 in CI workflows (sigp#4220)
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)
1 parent b927849 commit 3ac1a1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- uses: KyleMayes/install-llvm-action@v1
7474
if: startsWith(matrix.arch, 'x86_64-windows')
7575
with:
76-
version: "13.0"
76+
version: "15.0"
7777
directory: ${{ runner.temp }}/llvm
7878
- name: Set LIBCLANG_PATH
7979
if: startsWith(matrix.arch, 'x86_64-windows')

.github/workflows/test-suite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: choco install -y make
8484
- uses: KyleMayes/install-llvm-action@v1
8585
with:
86-
version: "13.0"
86+
version: "15.0"
8787
directory: ${{ runner.temp }}/llvm
8888
- name: Set LIBCLANG_PATH
8989
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV

0 commit comments

Comments
 (0)