From 6454da7b7e560985bfd738c01fbd9ec30188fc7f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 10 Apr 2025 10:43:53 +0200 Subject: [PATCH] workflow: add `createrepo_c` package to test dependencies This will fix the issue that TestManifestExtraRepo was not run. --- .github/workflows/go.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 98e674c..63bfdad 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -25,6 +25,8 @@ jobs: run: | # we have the same build-deps as the images library curl -sL https://raw.githubusercontent.com/osbuild/images/refs/heads/main/test/scripts/install-dependencies | bash + # we also need createrepo_c + dnf install -y createrepo_c - name: Build run: go build -v ./... - name: Test