From ce63641227549b741180ceea7fd2d44630f144f8 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Tue, 13 May 2025 11:08:58 +0100 Subject: [PATCH] ci: Add missing package Newer Fedora docker image do not include awk, add it to let tests pass. Signed-off-by: Frediano Ziglio --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8297bf6..bdf751b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: image: ${{ matrix.image }} steps: - name: Install dependencies (dnf) - run: dnf install -y libxml2-devel xen-devel make gcc + run: dnf install -y libxml2-devel xen-devel make gcc gawk - name: Checkout code uses: actions/checkout@v4