Skip to content

Commit

Permalink
Temporarily disable coredumps during library testing on macOS (#63742)
Browse files Browse the repository at this point in the history
System.Runtime.InteropServices.Tests seems to produce >10GB of coredumps which overwhelms CI.
  • Loading branch information
akoeplinger authored Jan 13, 2022
1 parent 79e40e3 commit 2c28e63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eng/testing/RunnerTemplate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
# files already in /cores/ at this point. This is being done to prevent
# inadvertently flooding the CI machines with dumps.
if [[ ! -d "/cores" || ! "$(ls -A /cores)" ]]; then
ulimit -c unlimited
# FIXME: temporarily disable core dumps
ulimit -c 0
fi

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

0 comments on commit 2c28e63

Please sign in to comment.