tar debug
Some checks failed
Build / Build - linux (push) Has been cancelled

This commit is contained in:
2025-12-11 20:11:55 +01:00
parent bd56cd31e4
commit 22af721701

View File

@@ -38,6 +38,33 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Debug - Check tar and environment
run: |
echo "=== Container Image Info ==="
cat /etc/os-release || true
echo ""
echo "=== PATH ==="
echo $PATH
echo ""
echo "=== All tar binaries on system ==="
which -a tar || true
find /bin /usr/bin /usr/local/bin -name "tar" 2>/dev/null || true
echo ""
echo "=== /bin/tar info ==="
ls -la /bin/tar || echo "/bin/tar not found"
/bin/tar --version 2>&1 || echo "/bin/tar --version failed"
echo ""
echo "=== /usr/bin/tar info ==="
ls -la /usr/bin/tar || echo "/usr/bin/tar not found"
/usr/bin/tar --version 2>&1 || echo "/usr/bin/tar --version failed"
echo ""
echo "=== Testing --posix flag ==="
/bin/tar --posix --version 2>&1 || echo "/bin/tar doesn't support --posix"
/usr/bin/tar --posix --version 2>&1 || echo "/usr/bin/tar doesn't support --posix"
echo ""
echo "=== Environment variables ==="
env | grep -i tar || echo "No tar-related env vars"
- name: Generate dependency hash
id: deps_hash
run: |