From 0d8a6e10f09d05885c9c3a6992542a5a59782e5e Mon Sep 17 00:00:00 2001 From: Aishwarya-U-R <91450662+Aishwarya-U-R@users.noreply.github.com> Date: Tue, 7 Feb 2023 23:11:00 +0530 Subject: [PATCH] test: TED support for GITEA (#20456) ## Description - This PR maps port 22 to 2222 (revert) ## Type of change - Script fix (non-breaking change which fixes an issue) --- .github/workflows/ci-test.yml | 2 +- .github/workflows/fat-migration.yml | 2 +- .github/workflows/perf-test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 917f1d7221..36f1d0ed4f 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -187,7 +187,7 @@ jobs: run: | mkdir -p ~/git-server/keys mkdir -p ~/git-server/repos - docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \ + docker run --name test-event-driver -d -p 2222: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 diff --git a/.github/workflows/fat-migration.yml b/.github/workflows/fat-migration.yml index a89d5d1508..51a86557f5 100644 --- a/.github/workflows/fat-migration.yml +++ b/.github/workflows/fat-migration.yml @@ -127,7 +127,7 @@ jobs: sudo /etc/init.d/ssh stop ; mkdir -p `pwd`/git-server/keys mkdir -p `pwd`/git-server/repos - docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \ + docker run --name test-event-driver -d -p 2222:22 -p 5001:5001 -p 3306:3306 \ -p 5432:5432 -p 28017:27017 -p 25:25 -p 5000:5000 -p 3000:3000 --volume /:/host \ -v ~/git-server/repos:/git-server/repos appsmith/test-event-driver:latest cd cicontainerlocal diff --git a/.github/workflows/perf-test.yml b/.github/workflows/perf-test.yml index 175ea22ff8..0d49a50ba7 100644 --- a/.github/workflows/perf-test.yml +++ b/.github/workflows/perf-test.yml @@ -186,7 +186,7 @@ jobs: run: | mkdir -p ~/git-server/keys mkdir -p ~/git-server/repos - docker run --name test-event-driver -d -p 22:22 -p 5001:5001 -p 3306:3306 \ + docker run --name test-event-driver -d -p 2222: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