From c39522f3f33becd7f57758a3e3d1c9bf4ce0d088 Mon Sep 17 00:00:00 2001 From: Thomas Carmet <8408330+tcarmet@users.noreply.github.com> Date: Wed, 19 Aug 2026 14:53:37 -0700 Subject: [PATCH] CLDSRV-978: Stop installing tcpdump in the kmip cluster job The step could hang when the apt mirrors are unresponsive. tcpdump already ships with the runner image, so the install is commented out rather than deleted, to make it easy to restore if a runner or image change ever drops the package. --- .github/workflows/tests.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f96a040dc7..dfa897be27 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -877,8 +877,11 @@ jobs: python-version: 3.9 - name: Setup CI environment uses: ./.github/actions/setup-ci - - name: Install tcpdump to analyze traffic on kmip cluster interfaces - run: sudo apt-get update && sudo apt-get install -y tcpdump + # tcpdump is already present on the runner image, and the apt mirrors are + # unreliable enough to hang a job for hours, so we don't install it. + # Uncomment if a runner or image change ever drops the package. + # - name: Install tcpdump to analyze traffic on kmip cluster interfaces + # run: sudo apt-get install -y tcpdump - name: Copy KMIP certs run: cp -r ./certs /tmp/ssl-kmip working-directory: .github/pykmip