Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit d2d070a

Browse files
committed
install llvm before building fuzzing tools
1 parent 5fb8a43 commit d2d070a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,10 @@ jobs:
375375
with:
376376
# use global.json to install the correct version
377377
global-json-file: global.json
378+
- name: install llVM
379+
run: |
380+
choco install llvm --version 16.0.6
381+
shell: powershell
378382
- run: src/ci/dotnet-fuzzing-tools.ps1
379383
shell: pwsh
380384
- uses: actions/upload-artifact@v3
@@ -609,7 +613,7 @@ jobs:
609613
Set-ExecutionPolicy Bypass -Scope Process -Force
610614
$ProgressPreference = 'SilentlyContinue'
611615
Invoke-Expression (Invoke-RestMethod 'https://chocolatey.org/install.ps1')
612-
choco install llvm --version 16.0.6
616+
choco install llvm
613617
choco install make
614618
$env:Path += ";C:\Program Files\LLVM\bin;C:\ProgramData\chocolatey\bin"
615619

0 commit comments

Comments
 (0)