From bb695b0308eef598e07969c488242ff3f4c515c6 Mon Sep 17 00:00:00 2001 From: Dominion Date: Thu, 18 May 2023 07:51:35 -0400 Subject: [PATCH] Temporary log Windows system and app event logs Diagnostics for https://github.com/actions/runner-images/issues/7007 --- .github/workflows/ci-suite.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index c5d154e8e2..e4ce51f68d 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -354,6 +354,18 @@ jobs: Start-Sleep -Seconds 10 dotnet test -c ${{ matrix.configuration }} --no-build --filter FullyQualifiedName~TestLiveServer --logger GitHubActions --collect:"XPlat Code Coverage" --settings ../../build/coverlet.runsettings --results-directory ../../TestResults + - name: get logs system + if: always() + run: | + Get-EventLog -LogName System | Format-List + shell: powershell + + - name: get logs application + if: always() + run: | + Get-EventLog -LogName Application | Format-List + shell: powershell + - name: Store Code Coverage uses: actions/upload-artifact@v3 with: