From b9bc9eaf7da9efe1f5a632949e0667018d1e2eb3 Mon Sep 17 00:00:00 2001 From: Aishwarya-U-R <91450662+Aishwarya-U-R@users.noreply.github.com> Date: Tue, 14 Feb 2023 22:59:40 +0530 Subject: [PATCH] test: TED support for GITEA (#20477) ## Description - This PR Stops SSH which is run on port 22 for enabling it for Local Gitea support from TED ## Type of change - Ci-test yml file update: ## Checklist ### QA activity: - [X] Added Test Plan Approved label after reviewing all changes --- .github/workflows/ci-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 0ce0d9032e..7b922176b4 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -185,9 +185,10 @@ jobs: APPSMITH_LICENSE_KEY: ${{ secrets.APPSMITH_LICENSE_KEY }} working-directory: "." run: | + sudo /etc/init.d/ssh stop ; mkdir -p ~/git-server/keys mkdir -p ~/git-server/repos - docker run --name test-event-driver -d -p 2222:22 -p 5001:5001 -p 3306:3306 \ + docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \ -p 5432:5432 -p 28017:27017 -p 25:25 -p 5000:5000 -p 3000:3000 --privileged --pid=host --ipc=host --volume /:/host -v ~/git-server/keys:/git-server/keys \ -v ~/git-server/repos:/git-server/repos appsmith/test-event-driver:latest cd cicontainerlocal