File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ jobs:
159
159
- name : Run component tests against ${{ matrix.multitarget }}
160
160
if : ${{ matrix.multitarget == 'uwp' || matrix.multitarget == 'wasdk' }}
161
161
id : test-platform
162
- run : vstest.console.exe ./tooling/**/CommunityToolkit.Tests.${{ matrix.multitarget }}.build.appxrecipe /Framework:FrameworkUap10 /logger:"trx;LogFileName=${{ matrix.multitarget }}.trx" /Blame
162
+ run : vstest.console.exe ./tooling/**/CommunityToolkit.Tests.${{ matrix.multitarget }}.build.appxrecipe /Framework:FrameworkUap10 /logger:"trx;LogFileName=${{ matrix.multitarget }}.trx" /Blame:"CollectDump;DumpType=Full;CollectHangDump;TestTimeout=30m;HangDumpType=Full" /Diag:"${{ github.workspace }}/vstest-diagnostic-log.txt"
163
163
164
164
- name : Create test reports
165
165
run : |
@@ -195,6 +195,13 @@ jobs:
195
195
name : CrashDumps-${{ matrix.multitarget }}-winui${{ matrix.winui }}
196
196
path : ' ${{ github.workspace }}/CrashDumps'
197
197
198
+ - name : Artifact - vstest-diagnostic-log
199
+ uses : actions/upload-artifact@v4
200
+ if : always()
201
+ with :
202
+ name : ' vstest-diagnostic-log-${{ matrix.multitarget }}-winui${{ matrix.winui }}.txt'
203
+ path : ' ${{ github.workspace }}/vstest-diagnostic-log.txt'
204
+
198
205
- name : Analyze Dump
199
206
if : ${{ steps.detect-dump.outputs.DUMP_FILE != '' && (env.ENABLE_DIAGNOSTICS == 'true' || env.COREHOST_TRACE != '') && always() }}
200
207
run : |
You can’t perform that action at this time.
0 commit comments