From 5a738d0157453df98b404491f593cb5874e3c54f Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 2 Jun 2025 18:22:37 +0300 Subject: [PATCH] ci: remove tarball generation from `ui-report` [no changelog] --- .github/actions/ui-report/action.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/actions/ui-report/action.yml b/.github/actions/ui-report/action.yml index e210ee387b..500439eae8 100644 --- a/.github/actions/ui-report/action.yml +++ b/.github/actions/ui-report/action.yml @@ -31,7 +31,6 @@ runs: mv tests/ui_tests/fixtures.*.json $OUTDIR || true mv tests/trezor*.log $OUTDIR || true diff -u tests/ui_tests/fixtures.json tests/ui_tests/fixtures.suggestion.json || true - tar -cf screens_$MODELJOB.tar tests/ui_tests/screens || true if [ "${{ inputs.status }}" = "success" ]; then cp .github/actions/ui-report/success.png $OUTDIR/status.png @@ -56,10 +55,3 @@ runs: echo "[UI test report](https://data.trezor.io/dev/firmware/ui_report/${{ github.run_id }}/${{ inputs.model }}-${{ inputs.lang }}-${{ github.job }}/index.html)" >> $GITHUB_STEP_SUMMARY shell: sh - - uses: actions/upload-artifact@v4 - with: - name: ui-records-${{ github.job }}-${{ strategy.job-index }} - path: | - # used by core_ui_main - screens_${{ inputs.model }}-${{ inputs.lang }}-${{ github.job }}.tar - retention-days: 1 # not useful after workflow finishes