This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository maintenance.
The following commit(s) were added to refs/heads/master by this push:
new f5304236 hydra: bayfront: Increase priority for riscv channel
derivation builds.
f5304236 is described below
commit f53042362dc592e8a543bd39601b64b53aac1c49
Author: Christopher Baines <[email protected]>
AuthorDate: Thu Apr 17 10:32:12 2025 +0100
hydra: bayfront: Increase priority for riscv channel derivation builds.
* hydra/bayfront.scm (%bffe-configuration): Increase priority for
riscv channel derivation builds.
---
hydra/bayfront.scm | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/hydra/bayfront.scm b/hydra/bayfront.scm
index 0501aa74..743165bf 100644
--- a/hydra/bayfront.scm
+++ b/hydra/bayfront.scm
@@ -1460,14 +1460,9 @@ access_log /var/log/nginx/git.qa.access.log;"))
((or (string=? system "x86_64-linux")
(string=? system "aarch64-linux"))
1000)
- ((or
- ;; i686-linux builds are getting stuck due to memory
- ;; issues, so use a lower priority
- (string=? system "i686-linux")
- ;; prioritise package builds over channel instances for
- ;; riscv64-linux aaand powerpc64le-linux
- (string=? system "riscv64-linux"))
- 0)
+ ;; i686-linux builds are getting stuck due to
+ ;; memory issues, so use a lower priority
+ ((string=? system "i686-linux") 0)
;; Prioritise packages for powerpc64le-linux
((string=? system "powerpc64le-linux") 700)
(else 900)))