add ssh logs
All checks were successful
Build, Test and Push Docker Image / e2e-test (push) Successful in 6s
Build, Test and Push Docker Image / build-and-push (push) Successful in 1m13s

This commit is contained in:
2025-11-06 21:27:11 +01:00
parent eb38e8a7ae
commit e1ce3c3ae2

View File

@@ -33,7 +33,7 @@ jobs:
run: |
ip=$(docker inspect ssh-server-test | jq -r '.[0].NetworkSettings.Networks."test-net".IPAddress')
echo "Server IP: $ip"
output=$( { docker run --rm --network test-net alpine sh -c "apk add --no-cache openssh-client && ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=10 root@$ip 'echo test559920' 2>/dev/null" ; } 2>&1 ; true )
output=$( { docker run --rm --network test-net alpine sh -c "apk add --no-cache openssh-client && ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=10 root@$ip 'echo test559920'" ; } 2>&1 ; true )
echo "Captured output: '$output'"
if echo "$output" | grep -q "test559920"; then
echo "SSH connection test passed"