ci: Fix for ssh port 22 issue (#38697)
## Description Workflow failure : https://github.com/appsmithorg/appsmith/actions/runs/12804875642/job/35705873169 Fixes # https://app.zenhub.com/workspaces/qa-63316faf86bb2e170ed2e46b/issues/gh/appsmithorg/appsmith/38698 ## Automation /ok-to-test tags="@tag.Settings" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!IMPORTANT] > 🟣 🟣 🟣 Your tests are running. > Tests running at: <https://github.com/appsmithorg/appsmith/actions/runs/12807366996> > Commit: cc4baab222b9f0667cb9addb98ef3549b2650ecf > Workflow: `PR Automation test suite` > Tags: `@tag.Settings` > Spec: `` > <hr>Thu, 16 Jan 2025 10:54:57 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Updated GitHub Actions workflows to disable SSH socket service during Docker container execution - Ensures SSH service is stopped and prevented from automatically restarting during CI tests <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
parent
2b8ba77fec
commit
eb8e0e398f
|
|
@ -236,6 +236,7 @@ jobs:
|
|||
working-directory: "."
|
||||
run: |
|
||||
sudo /etc/init.d/ssh stop ;
|
||||
sudo systemctl disable --now ssh.socket
|
||||
mkdir -p ~/git-server/keys
|
||||
docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \
|
||||
-p 5433:5432 -p 28017:27017 -p 25:25 -p 4200:4200 -p 5000:5000 -p 3001:3000 -p 6001:6001 -p 8001:8000 --privileged --pid=host --ipc=host --volume /:/host -v ~/git-server/keys:/git-server/keys \
|
||||
|
|
|
|||
1
.github/workflows/ci-test-limited.yml
vendored
1
.github/workflows/ci-test-limited.yml
vendored
|
|
@ -151,6 +151,7 @@ jobs:
|
|||
working-directory: "."
|
||||
run: |
|
||||
sudo /etc/init.d/ssh stop ;
|
||||
sudo systemctl disable --now ssh.socket
|
||||
mkdir -p ~/git-server/keys
|
||||
docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \
|
||||
-p 5433:5432 -p 28017:27017 -p 25:25 -p 4200:4200 -p 5000:5000 -p 3001:3000 -p 6001:6001 -p 8001:8000 --privileged --pid=host --ipc=host --volume /:/host -v ~/git-server/keys:/git-server/keys \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user