diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml index edb8fff74e..8c15c75e0e 100644 --- a/.github/workflows/quick-regression.yml +++ b/.github/workflows/quick-regression.yml @@ -95,7 +95,8 @@ jobs: --list-input=input-list-${{ matrix.idx }}.txt \ --output-file=output-${{ matrix.idx }}.xml \ --progress-file=progress-${{ matrix.idx }}.yaml \ - --log-file=run-${{ matrix.idx }}.log + --log-file=run-${{ matrix.idx }}.log \ + > screen.${{ matrix.id }} fi tar -cvf quick-regression-test-${{ matrix.idx }}.tar run-${{ matrix.idx }}.log progress-${{ matrix.idx }}.yaml output-${{ matrix.idx }}.xml @@ -117,5 +118,7 @@ jobs: pattern: quick-regression-test-artifact-* - name: Print Job Summary run: | - echo "::notice::Quick Regression complete" + echo "Quick regression test completed: " > $GITHUB_STEP_SUMMARY + grep Failed screen.* >> $GITHUB_STEP_SUMMARY + echo "::warning::`cat $GITHUB_STEP_SUMMARY`"