Skip to content

Commit 58faf9d

Browse files
committed
Actions: Disable the CLR tracer in C# autobuild test
Ensure that this succeeds even if the legacy CLR tracer is not enabled. The combination of the regular tracer and the SIP workaround within Actions should be sufficient for this to pass.
1 parent dc1c51d commit 58faf9d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/__autobuild-action.yml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/autobuild-action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ steps:
77
languages: csharp
88
tools: ${{ steps.prepare-test.outputs.tools-url }}
99
- uses: ./../action/autobuild
10+
env:
11+
# Explicitly disable the CLR tracer.
12+
COR_ENABLE_PROFILING: ""
13+
COR_PROFILER: ""
14+
COR_PROFILER_PATH_64: ""
15+
CORECLR_ENABLE_PROFILING: ""
16+
CORECLR_PROFILER: ""
17+
CORECLR_PROFILER_PATH_64: ""
1018
- uses: ./../action/analyze
1119
env:
1220
TEST_MODE: true

0 commit comments

Comments
 (0)