remove null output
Some checks failed
Build, Test and Push Docker Image / e2e-test (push) Failing after 5s
Build, Test and Push Docker Image / build-and-push (push) Has been skipped

This commit is contained in:
2025-11-06 21:14:37 +01:00
parent 64a5aa434b
commit 5579736ef4

View File

@@ -30,7 +30,7 @@ jobs:
- name: Test SSH connection - name: Test SSH connection
run: | run: |
output=$(docker run --rm --network test-net alpine sh -c "apk add --no-cache openssh-client >/dev/null 2>&1 && ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=10 root@ssh-server-test 'echo test559920' 2>/dev/null") output=$(docker run --rm --network test-net alpine sh -c "apk add --no-cache openssh-client >/dev/null 2>&1 && ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=10 root@ssh-server-test 'echo test559920'")
echo "OUTPUT $output" echo "OUTPUT $output"
if echo "$output" | grep -q "test559920"; then if echo "$output" | grep -q "test559920"; then
echo "SSH connection test passed" echo "SSH connection test passed"