-
Notifications
You must be signed in to change notification settings - Fork 105
Use GitHub Actions diagnostics flag in CI #453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
a54d2b5
641976c
aa91144
2f3e626
0b50ad7
f4653a2
4b98b36
08318c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -18,7 +18,9 @@ on: | |||||
|
||||||
env: | ||||||
DOTNET_VERSION: ${{ '8.0.201' }} | ||||||
ENABLE_DIAGNOSTICS: true | ||||||
# Debug logging enabled via GitHub UI during reruns or set as repo secret. | ||||||
# See also https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging | ||||||
ENABLE_DIAGNOSTICS: ${{ github.ACTIONS_RUNNER_DEBUG }} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, doesn't seem to be picking it up, should it just be a straight There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, just found this, it may just be From runner context doc - https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context - this seems to be what corresponds to the checkbox. Not sure what that other doc is about... We should update the comment too There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at the originally linked docs, I think I see why
Maybe we need to enable step debug logging instead via
As for the We can try both, but let's start with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Posted here as well, but |
||||||
MSBUILD_VERBOSITY: normal | ||||||
#COREHOST_TRACE: 1 | ||||||
COREHOST_TRACEFILE: corehosttrace.log | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.