Merge actions
Some checks failed
Build, Test and Push Docker Image / e2e-test (push) Failing after 11s
Build, Test and Push Docker Image / build-and-push (push) Has been skipped

This commit is contained in:
2025-11-06 20:34:00 +01:00
parent 0ca9d8b011
commit 9da91a38d2
2 changed files with 29 additions and 41 deletions

View File

@@ -1,4 +1,4 @@
name: Build and Push Docker Image
name: Build, Test and Push Docker Image
on:
push:
@@ -6,8 +6,36 @@ on:
- master
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker image
run: docker build -t ssh-server-test .
- name: Run SSH server
run: |
docker run --rm -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 2223 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost "echo test")
if [ "$output" = "test" ]; then
echo "SSH connection test passed"
else
echo "SSH connection test failed"
exit 1
fi
build-and-push:
runs-on: ubuntu-latest
needs: e2e-test
steps:
- name: Checkout code

View File

@@ -1,40 +0,0 @@
name: E2E Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker image
run: docker build -t ssh-server-test .
- name: Run SSH server
run: |
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 2223 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost "echo test")
if [ "$output" = "test" ]; then
echo "SSH connection test passed"
else
echo "SSH connection test failed"
exit 1
fi
- name: Cleanup
run: docker stop ssh-server-test