From f9717ea8dadfb691901c57d258f657573e4bc8c4 Mon Sep 17 00:00:00 2001 From: Daniel Hilst <392820+dhilst@users.noreply.github.com> Date: Thu, 16 Jul 2026 23:32:24 -0300 Subject: [PATCH] CI: install build-essential so xcat-core debs build on noble On the ubuntu-24.04 runner, dpkg-buildpackage aborted every xcat-core package with 'Unmet build dependencies: build-essential:native', so zero debs were produced, reprepro created no dists/noble, and 'apt-get update' against the local file: repo failed with 'dists/noble/.../Packages File not found' -> install_xcat failed. Add build-essential to the workflow dependency install so the local package repo is actually built. --- .github/workflows/xcat_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/xcat_test.yml b/.github/workflows/xcat_test.yml index 736357bc2..f85895940 100644 --- a/.github/workflows/xcat_test.yml +++ b/.github/workflows/xcat_test.yml @@ -7,6 +7,6 @@ jobs: steps: - uses: actions/checkout@v6 - name: Install dependencies - run: sudo apt-get install -y --no-install-recommends --no-install-suggests fakeroot reprepro devscripts debhelper libcapture-tiny-perl libjson-perl libsoap-lite-perl libdbi-perl libcgi-pm-perl quilt openssh-server dpkg looptools genometools software-properties-common + run: sudo apt-get install -y --no-install-recommends --no-install-suggests build-essential fakeroot reprepro devscripts debhelper libcapture-tiny-perl libjson-perl libsoap-lite-perl libdbi-perl libcgi-pm-perl quilt openssh-server dpkg looptools genometools software-properties-common - name: Run tests run: perl github_action_xcat_test.pl