mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
builders: Reduce threshold for /tmp space to 1GB
buildperf-debian11 only has 1.8GB space on /tmp so this was blocking builds. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
12f10fc494
commit
fdc1617271
|
@ -68,7 +68,7 @@ def canStartBuild(builder, wfb, request):
|
|||
# threshold is GB of space
|
||||
checks = {
|
||||
"." : (200, "HOME"),
|
||||
"/tmp" : (10, "/tmp"),
|
||||
"/tmp" : (1, "/tmp"),
|
||||
}
|
||||
|
||||
for mountpoint in checks:
|
||||
|
|
Loading…
Reference in New Issue
Block a user