Change port for test
This commit is contained in:
@@ -21,14 +21,14 @@ jobs:
|
||||
|
||||
- name: Run SSH server
|
||||
run: |
|
||||
docker run -d --name ssh-server-test -p 2222:22 -e COMMAND="echo 'SSH connection successful'" ssh-server-test
|
||||
docker run -d --name ssh-server-test -p 2223:22 -e COMMAND="echo 'SSH connection successful'" ssh-server-test
|
||||
|
||||
- name: Wait for server to start
|
||||
run: sleep 5
|
||||
|
||||
- name: Test SSH connection
|
||||
run: |
|
||||
output=$(ssh -p 2222 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost "echo test")
|
||||
output=$(ssh -p 2223 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost "echo test")
|
||||
if [ "$output" = "test" ]; then
|
||||
echo "SSH connection test passed"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user