From 4d8ee69e4a25bbaa704a7efe5df2de4c8561cdaf Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 13 Mar 2023 19:47:41 +0000 Subject: Adjust the priority for i686-linux channel instance builds --- .../guix-build-coordinator-queue-builds-from-guix-data-service.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in index 4b6c891..cde46e6 100644 --- a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in +++ b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in @@ -381,7 +381,11 @@ (string=? system "aarch64-linux")) (string=? target "none")) 1000 - 800)) + ;; i686-linux builds are getting stuck due to memory issues, + ;; so use a lower priority + (if (string=? system "i686-linux") + 0 + 800))) ((eq? type 'package) (cond ((and (or (string=? system "x86_64-linux") -- cgit v1.2.3