Detect two more failures -- fetch timeout and runaway process (which is
really a make package timeout without output).
This commit is contained in:
parent
e96b5e9dbb
commit
bafaa911bf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33245
1 changed files with 4 additions and 0 deletions
|
@ -91,6 +91,10 @@ else
|
|||
else
|
||||
reason="missing header"; tag="header"
|
||||
fi
|
||||
elif grep -q "pnohang: killing make checksum" $1; then
|
||||
reason="fetch timeout"; tag="fetch-timeout"
|
||||
elif grep -q "pnohang: killing make package" $1; then
|
||||
reason="runaway process"; tag="runaway"
|
||||
elif grep -q "cd: can't cd to" $1; then
|
||||
reason="NFS"; tag="nfs"
|
||||
elif grep -qE "pkg_add: (can't find enough temporary space|projected size of .* exceeds available free space)" $1; then
|
||||
|
|
Loading…
Reference in a new issue