From 4ab4922dc80be43134d0ebe36e3f76719de48d73 Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Wed, 3 Apr 2024 15:35:26 +0100 Subject: [PATCH] ci: ci: list processes before calling apt-get to enable debugging (#11815) --- .github/actions/install-system-dependencies/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/install-system-dependencies/action.yml b/.github/actions/install-system-dependencies/action.yml index 0a048f8e1b2..f1b090ed70a 100644 --- a/.github/actions/install-system-dependencies/action.yml +++ b/.github/actions/install-system-dependencies/action.yml @@ -6,6 +6,8 @@ runs: steps: - if: runner.os == 'Linux' run: | + # List processes to enable debugging in case /var/lib/apt/lists/ is locked + ps aux sudo apt-get update -y sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev pkg-config shell: bash