Skip to content

Commit 21d0e6f

Browse files
cdeckerclaude
andcommitted
fix: Add setup step to report job to install LLVM tools
The report job wasn't installing llvm and clang packages, causing llvm-profdata and llvm-cov to not be found. Add quick apt install step. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <[email protected]>
1 parent a567f98 commit 21d0e6f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/coverage-nightly.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ jobs:
220220
- name: Checkout
221221
uses: actions/checkout@v4
222222

223+
- name: Install dependencies
224+
run: |
225+
sudo apt-get update -qq
226+
sudo apt-get install -qq --no-install-recommends -yy llvm clang
227+
223228
- name: Verify LLVM tools are available
224229
run: |
225230
echo "Verifying LLVM tools are available..."

0 commit comments

Comments
 (0)