From 3bd5da93317754aa675785d93fd681e831b3b3ca Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong (cubxxw)" <3293172751nss@gmail.com> Date: Sun, 7 Jan 2024 12:18:40 +0800 Subject: [PATCH] feat: add openim mongo logic Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --- .github/workflows/e2e-test.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 8966a4445..f9fc72f71 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -93,17 +93,20 @@ jobs: - name: Exec OpenIM API test run: | echo "# OpenIM Test" > /tmp/test-api.md - echo "## Command Output" >> /tmp/test-api.md - echo "```" >> /tmp/test.md + echo "
Command Output for OpenIM API Test" >> /tmp/test-api.md + echo "```" >> /tmp/test-api.md sudo make test-api | tee -a /tmp/test-api.md - echo "```" >> /tmp/test.md + echo "```" >> /tmp/test-api.md + echo "
" >> /tmp/test-api.md - name: Exec OpenIM E2E Test run: | - echo "## Command Output" >> /tmp/test-e2e.md - echo "```" >> /tmp/test.md + echo "# OpenIM E2E Test" >> /tmp/test-e2e.md + echo "
Command Output for OpenIM E2E Test" >> /tmp/test-e2e.md + echo "```" >> /tmp/test-e2e.md sudo make test-e2e | tee -a /tmp/test-e2e.md - echo "```" >> /tmp/test.md + echo "```" >> /tmp/test-e2e.md + echo "
" >> /tmp/test-e2e.md - name: Exec OpenIM System uninstall run: |