Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions eng/pipelines/runtime-diagnostics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ parameters:
- windows_arm64
- linux_arm64
- linux_arm
# TODO: Re-enable osx once disk space issue is resolved.
# macOS full dumps are ~5.7GB each; with 8+ full-dump debuggees the Helix
# machines run out of disk space (~45GB total). See PR #124782 for details.
# - osx_arm64
# - osx_x64
- osx_arm64
- osx_x64
Comment thread
rcj1 marked this conversation as resolved.
- name: cdacDumpTestMode
displayName: cDAC Dump Test Mode
type: string
Expand Down
4 changes: 4 additions & 0 deletions src/native/managed/cdac/tests/DumpTests/cdac-dump-helix.proj
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@
<HelixPreCommand Include="set DOTNET_DbgEnableMiniDump=1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetOS)' != 'windows'">
<!-- Check available disk space before running tests -->
<HelixPreCommand Include="df -h" />
<!-- Disable core dumps (ulimit -c 0) since system cores are too large and we create many intentional crashes for tests, which would fill the machine. -->
<HelixPreCommand Include="ulimit -c 0" />
<HelixPreCommand Include="export DOTNET_DbgEnableMiniDump=1" />
<HelixPreCommand Include="chmod +x $HELIX_CORRELATION_PAYLOAD/dotnet" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@

<!-- Pre-commands -->
<ItemGroup Condition="'$(TargetOS)' != 'windows'">
<!-- Check available disk space before running tests -->
<HelixPreCommand Include="df -h" />
<!-- Disable core dumps (ulimit -c 0) since system cores are too large and we create many intentional crashes for tests, which would fill the machine. -->
<HelixPreCommand Include="ulimit -c 0" />
<HelixPreCommand Include="chmod +x $HELIX_CORRELATION_PAYLOAD/dotnet" />
</ItemGroup>

Expand Down
Loading