reduce intermittent Windows GitHub Actions CI build failures (#4495)
This commit is contained in:
parent
6bfc766629
commit
3b60b225b3
|
@ -121,7 +121,10 @@ jobs:
|
|||
ncpu=$(sysctl -n hw.ncpu)
|
||||
;;
|
||||
'Windows')
|
||||
ncpu=${NUMBER_OF_PROCESSORS}
|
||||
# otherwise, intermittent CI build failures
|
||||
# e.g., cc1.exe: out of memory allocating 215528 bytes
|
||||
# underflow corrected later
|
||||
ncpu=$((${NUMBER_OF_PROCESSORS} - 1))
|
||||
make_cmd="mingw32-make"
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue