Skip to content

Commit

Permalink
added some more docker commands
Browse files Browse the repository at this point in the history
  • Loading branch information
DinisCruz committed May 30, 2024
1 parent 469e5c2 commit 0034eac
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/run-tests-with-ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3


- name: Generate SSH key
id: ssh-key
run: |
Expand All @@ -24,17 +23,23 @@ jobs:
- name: Start Docker container
run: |
docker run -d -p 22222:22 --name test_container -e AUTHORIZED_KEYS="$(cat /tmp/ssh_key.pub)" --platform linux/arm64 diniscruz/python_with_ssh
docker run -d -p 22222:22 --name test_container -e AUTHORIZED_KEYS="${{ steps.ssh-key.outputs.public_key }}" --platform linux/arm64 diniscruz/python_with_ssh
- name: Wait for Docker container to be ready
run: |
ls -la /tmp
docker ps
sleep 10
docker ps
docker logs test_container
- name: Run a simple SSH command

run: |
ls -la /tmp
chmod 600 /tmp/ssh_key
ssh -o StrictHostKeyChecking=no -i /tmp/ssh_key root@localhost -p 22222 echo "SSH connection successful"
# - name: Run tests
# run: |
Expand Down

0 comments on commit 0034eac

Please sign in to comment.