From 980270d60d30bfc5ea7fc11b3ad2f713b18d58fa Mon Sep 17 00:00:00 2001 From: Andrew Dias Date: Tue, 27 Aug 2024 00:09:41 -0400 Subject: [PATCH] Install libkrb5 on ubuntu in tests --- .github/workflows/test-compilation.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test-compilation.yml b/.github/workflows/test-compilation.yml index 3db71c67b5e7..1e9435717342 100644 --- a/.github/workflows/test-compilation.yml +++ b/.github/workflows/test-compilation.yml @@ -41,6 +41,10 @@ jobs: target key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: install kerberos dependencies on Ubuntu + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update && sudo apt-get install -y libkrb5-dev + - name: compile ${{ matrix.crate }} shell: bash env: