Skip to content

Commit c558fae

Browse files
committed
Fix workflow: Add krb5 system dependency
The workflow was failing during poetry install due to missing krb5 system libraries needed for kerberos dependencies. Signed-off-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 69f4882 commit c558fae

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test-telemetry-only.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
with:
3030
python-version: "3.10"
3131

32+
- name: Install system dependencies
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install -y libkrb5-dev
36+
3237
- name: Install Poetry
3338
uses: snok/install-poetry@v1
3439
with:

0 commit comments

Comments
 (0)