Skip to content

Commit 871438f

Browse files
authored
Temporarily disable core dumps when running libraries tests on macOS (#65001)
1 parent a702712 commit 871438f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

eng/testing/RunnerTemplate.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
132132
# files already in /cores/ at this point. This is being done to prevent
133133
# inadvertently flooding the CI machines with dumps.
134134
if [[ ! -d "/cores" || ! "$(ls -A /cores)" ]]; then
135-
ulimit -c unlimited
135+
# TODO: Re-enable core dumps - https://github.com/dotnet/runtime/issues/65000
136+
# Temporarily disabling core dumps on osx as runtime work items uploading dumps
137+
# are affecting the entire queue
138+
# ulimit -c unlimited
139+
ulimit -c 0
136140
fi
137141

138142
elif [[ "$(uname -s)" == "Linux" ]]; then

0 commit comments

Comments
 (0)