Skip to content

Commit 4661461

Browse files
committed
fix: kerberos package install sometime fails in CI
Signed-off-by: Yftach Herzog <yherzog@redhat.com>
1 parent 180a065 commit 4661461

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
- name: Install pipenv
1818
run: pip install pipenv==2023.7.23
1919
- name: install packages
20-
run: sudo apt-get install -y libkrb5-dev
20+
run: |
21+
apt-get update
22+
sudo apt-get install -y libkrb5-dev
2123
- name: Create virtualenv
2224
run: pipenv sync
2325
- name: Run tests

0 commit comments

Comments
 (0)