From 42a3ee2e6d68e32b0cdbd72f6d296b75c9df49f5 Mon Sep 17 00:00:00 2001
From: "Xinwei Xiong (cubxxw)" <3293172751nss@gmail.com>
Date: Tue, 9 Jan 2024 17:58:55 +0800
Subject: [PATCH] fix: fox openim support arm arch
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
---
.github/workflows/e2e-test.yml | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml
index 6d8112eb4..21bb4986e 100644
--- a/.github/workflows/e2e-test.yml
+++ b/.github/workflows/e2e-test.yml
@@ -92,29 +92,30 @@ jobs:
- name: Exec OpenIM API test
run: |
- touch /tmp/test.md
- echo "# OpenIM Test" >> /tmp/test.md
- echo "## OpenIM API Test" >> /tmp/test.md
- echo "Command Output for OpenIM API Test
" >> /tmp/test.md
- echo "" >> /tmp/test.md
- sudo make test-api | tee -a /tmp/test.md
- echo "
" >> /tmp/test.md
- echo " " >> /tmp/test.md
+ mkdir -p ./tmp
+ touch ./tmp/test.md
+ echo "# OpenIM Test" >> ./tmp/test.md
+ echo "## OpenIM API Test" >> ./tmp/test.md
+ echo "Command Output for OpenIM API Test
" >> ./tmp/test.md
+ echo "" >> ./tmp/test.md
+ sudo make test-api | tee -a ./tmp/test.md
+ echo "
" >> ./tmp/test.md
+ echo " " >> ./tmp/test.md
- name: Exec OpenIM E2E Test
run: |
- echo "" >> /tmp/test.md
- echo "## OpenIM E2E Test" >> /tmp/test.md
- echo "Command Output for OpenIM E2E Test
" >> /tmp/test.md
- echo "" >> /tmp/test.md
- sudo make test-e2e | tee -a /tmp/test.md
- echo "
" >> /tmp/test.md
- echo " " >> /tmp/test.md
+ echo "" >> ./tmp/test.md
+ echo "## OpenIM E2E Test" >> ./tmp/test.md
+ echo "Command Output for OpenIM E2E Test
" >> ./tmp/test.md
+ echo "" >> ./tmp/test.md
+ sudo make test-e2e | tee -a ./tmp/test.md
+ echo "
" >> ./tmp/test.md
+ echo " " >> ./tmp/test.md
- name: Comment PR with file
uses: thollander/actions-comment-pull-request@v2
with:
- filePath: /tmp/test.md
+ filePath: ./tmp/test.md
comment_tag: nrt_file
reactions: eyes, rocket
mode: recreate