From 787c7144850fd4664c31b88ac734ac8bf75f4b1b Mon Sep 17 00:00:00 2001 From: Inessa Vasilevskaya Date: Thu, 7 Apr 2022 11:55:53 +0200 Subject: [PATCH 07/39] Fix krb5-config not found error copr-cli installation started failing on missing this dependency. --- .github/workflows/tmt-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tmt-tests.yml b/.github/workflows/tmt-tests.yml index ef68830e..75768e51 100644 --- a/.github/workflows/tmt-tests.yml +++ b/.github/workflows/tmt-tests.yml @@ -15,6 +15,10 @@ jobs: && contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association) runs-on: ubuntu-20.04 steps: + - name: Install necessary deps + id: deps_install + run: sudo apt-get install -y libkrb5-dev + - name: Get pull request number id: pr_nr run: | -- 2.35.3