summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2019-03-23 13:22:47 +0100
committerHelmut Grohne <helmut@subdivi.de>2019-03-23 13:22:47 +0100
commit594575d553cec98ff5d9f10d5543a26dd3ee2967 (patch)
treef2ec11a5ee414cf82798e069baf67cf1920917f2 /build.py
parent67c979e59f730a9a18b99844080ca721f6ea12d6 (diff)
downloadcrossqa-594575d553cec98ff5d9f10d5543a26dd3ee2967.tar.gz
build.py: add back random ordering
Otherwise "any" builds will always schedule for arm64.
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.py b/build.py
index d83686c..6a40dd3 100755
--- a/build.py
+++ b/build.py
@@ -54,7 +54,8 @@ def main():
JOIN depcheck
ON d.architecture = depcheck.architecture
WHERE d.satisfiable = 1 AND depcheck.giveback = 0
- ORDER BY r.priority DESC, r.requesttime ASC LIMIT 1;""")
+ ORDER BY r.priority DESC, r.requesttime ASC, random()
+ LIMIT 1;""")
row = cur.fetchone()
if not row:
cur.execute("""