From 68e09032f46f77417e9844b66f55d2fe04455425 Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Mon, 15 Jul 2024 10:39:04 -0400 Subject: [PATCH] Debug: avoid debuginfo for centos9 due to checksum error --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a3aedabdc..4c694c266 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -796,7 +796,7 @@ jobs: run: | dnf install -y nmap-ncat gdb binutils elfutils elfutils-debuginfod-client findutils file nginx command -v curl || dnf install -y curl - dnf debuginfo-install -y python3 + if [[ "${{ matrix.containerTag }}" != "stream9" ]]; then dnf debuginfo-install -y python3; fi - name: install qpid-proton python wheel run: ${PYTHON} -m pip install $(find ${ProtonBuildDir}/python/dist -name 'python_qpid_proton*.whl')