From 91b8a67f66a0b78091b99a6be80f1541e4764eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sun, 24 Sep 2023 11:30:29 +0200 Subject: [PATCH 1/2] Upload test results as artifact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- .github/workflows/uitests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/uitests.yml b/.github/workflows/uitests.yml index 57f3598ae..841b7b6e4 100644 --- a/.github/workflows/uitests.yml +++ b/.github/workflows/uitests.yml @@ -70,4 +70,12 @@ jobs: -destination "$DESTINATION" \ -test-iterations 3 \ -retry-tests-on-failure \ + -resultBundlePath "testResult.xcresult" \ | xcpretty + + - name: Upload test results + uses: actions/upload-artifact@v3 + if: ${{ !cancelled() }} + with: + name: testResults-${{ matrix.test-branches }}.xcresult + path: "testResult.xcresult" From 2253da119f84dd274babc27739215b17becbbf12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sun, 24 Sep 2023 20:54:34 +0200 Subject: [PATCH 2/2] Add test results to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3257fa8ab..b41a28233 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ NextcloudTalk.xcworkspace/xcuserdata NextcloudTalk.xcworkspace/xcshareddata ThirdParty/WebRTC.xcframework .DS_Store +testResult.xcresult