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:
Richard Purdie 2024-08-08 11:06:11 +01:00
parent 12f10fc494
commit fdc1617271

View File

@ -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: