Ignore ssh warning on test
This commit is contained in:
@@ -30,11 +30,11 @@ jobs:
|
||||
|
||||
- name: Test SSH connection
|
||||
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 test'")
|
||||
if [ "$output" = "test" ]; then
|
||||
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'")
|
||||
if echo "$output" | grep -q "test559920"; then
|
||||
echo "SSH connection test passed"
|
||||
else
|
||||
echo "SSH connection test failed"
|
||||
echo "SSH connection test failed: $output"
|
||||
exit 1
|
||||
fi
|
||||
docker stop ssh-server-test && docker rm ssh-server-test && docker network rm test-net
|
||||
|
||||
Reference in New Issue
Block a user