Skip to content

Commit c0ae800

Browse files
committed
Add msbuild binlog and diagnostic params, realign artifact name with mainline repo
1 parent 309c68a commit c0ae800

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717

1818
env:
1919
ENABLE_DIAGNOSTICS: true
20+
MSBUILD_VERBOSITY: normal
2021
#COREHOST_TRACE: 1
2122
COREHOST_TRACEFILE: corehosttrace.log
2223

@@ -213,7 +214,7 @@ jobs:
213214

214215
- name: MSBuild
215216
working-directory: ./${{ env.TEST_PROJECT_DIRECTORY }}
216-
run: msbuild.exe ${{ env.TEST_PROJECT_NAME }}.sln /restore /nowarn:MSB4011 -p:Configuration=Release
217+
run: msbuild.exe ${{ env.TEST_PROJECT_NAME }}.sln /restore /nowarn:MSB4011 -p:Configuration=Release /m ${{ env.ENABLE_DIAGNOSTICS == 'true' && '/bl' || '' }} /v:${{ env.MSBUILD_VERBOSITY }}
217218

218219
# Run tests
219220
- name: Setup VSTest Path
@@ -238,7 +239,7 @@ jobs:
238239
uses: actions/upload-artifact@v4
239240
if: ${{ (env.ENABLE_DIAGNOSTICS == 'true' || env.COREHOST_TRACE != '') && always() }}
240241
with:
241-
name: new-experiment-logs-winui${{ matrix.winui }}-multitarget${{ matrix.multitarget }}
242+
name: new-experiment-logs-${{ matrix.multitarget }}-winui${{ matrix.winui }}
242243
path: ./**/*.*log
243244

244245
wasm-linux:

0 commit comments

Comments
 (0)