Skip to content

Commit d3be01d

Browse files
committed
ci: add debug info for libkeyutils
1 parent 8d652bd commit d3be01d

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/ubuntu-22.04.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,22 @@ jobs:
1313
runs-on: [self-hosted, ubuntu-22.04]
1414

1515
steps:
16+
- name: Debug Environment
17+
run: |
18+
echo "User: $(whoami)"
19+
echo "PWD: $(pwd)"
20+
echo "CI env var: $CI"
21+
ls -l /usr/lib/x86_64-linux-gnu/libkeyutils.so* || echo "Not found in /usr/lib..."
22+
/sbin/ldconfig -p | grep libkeyutils || echo "ldconfig failed"
23+
echo "Recent dpkg updates for libkeyutils:"
24+
grep "libkeyutils" /var/log/dpkg.log | tail -n 20 || echo "No recent dpkg entries"
25+
1626
# Reinstall potentially corrupted library on self-hosted runner
1727
- name: Fix Runner Libraries
1828
run: |
1929
sudo apt-get update
2030
sudo apt-get install --reinstall -y libkeyutils1
31+
2132
# NOTE: Dependencies are already installed on the dev runner
2233
# - name: update apt
2334
# run: sudo apt-get update

0 commit comments

Comments
 (0)