File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,11 +13,17 @@ jobs:
1313 runs-on : [self-hosted, ubuntu-22.04]
1414
1515 steps :
16- # Reinstall potentially corrupted library on self-hosted runner
17- - name : Fix Runner Libraries
16+ - name : Debug Environment
1817 run : |
19- sudo apt-get update
20- sudo apt-get install --reinstall -y libkeyutils1
18+ echo "User: $(whoami)"
19+ echo "PWD: $(pwd)"
20+ echo "CI env var: $CI"
21+ ls -lah /usr/lib/x86_64-linux-gnu/libkeyutils.so* || echo "Not found in /usr/lib..."
22+ ls -lah /lib/x86_64-linux-gnu/libkeyutils.so.1* || echo "Not found in /lib..."
23+ /sbin/ldconfig -p | grep libkeyutils || echo "ldconfig failed"
24+ echo "Recent dpkg updates for libkeyutils:"
25+ grep "libkeyutils" /var/log/dpkg.log | tail -n 20 || echo "No recent dpkg entries"
26+
2127 # NOTE: Dependencies are already installed on the dev runner
2228 # - name: update apt
2329 # run: sudo apt-get update
You can’t perform that action at this time.
0 commit comments