guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: hydra: bayfront: Update build and offload configurations.


From: Andreas Enge
Subject: 01/01: hydra: bayfront: Update build and offload configurations.
Date: Thu, 22 Mar 2018 14:03:13 -0400 (EDT)

andreas pushed a commit to branch master
in repository maintenance.

commit c0d34935974899ef831fa443ec17d80797f1930d
Author: Andreas Enge <address@hidden>
Date:   Thu Mar 22 19:01:45 2018 +0100

    hydra: bayfront: Update build and offload configurations.
    
    * hydra/bayfront.scm: Increase number of build jobs and cores per job, and
    disable i686 and enable armhf.
    * hydra/machines-bayfront.scm: New file.
---
 hydra/bayfront.scm          |  3 +++
 hydra/machines-bayfront.scm | 29 +++++++++++++++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/hydra/bayfront.scm b/hydra/bayfront.scm
index e5f20ff..d2a550b 100644
--- a/hydra/bayfront.scm
+++ b/hydra/bayfront.scm
@@ -122,6 +122,9 @@ Happy hacking!\n"))
 
                    (frontend-services %sysadmins
                                       #:motd %motd
+                                      #:max-jobs 10
+                                      #:cores 6
+                                      #:systems '("x86_64-linux" "armhf-linux")
                                       #:nginx-config-file
                                       (file-append %nginx-config
                                                    "/bayfront.conf")))))
diff --git a/hydra/machines-bayfront.scm b/hydra/machines-bayfront.scm
new file mode 100644
index 0000000..2055ebe
--- /dev/null
+++ b/hydra/machines-bayfront.scm
@@ -0,0 +1,29 @@
+(define harbourfront
+  (build-machine
+    (name "harbourfront.guixsd.org")
+    (system "x86_64-linux")
+    (user "bayfront")
+    (host-key "ssh-ed25519 
AAAAC3NzaC1lZDI1NTE5AAAAIBfd3VZqyoKoZG3X772eDBrN2MPhnNDDnVA34hpf0f9b 
root@(none)")
+    (parallel-builds 3)
+    (speed 1.0)))
+    
+(define harbourfront-i686
+  (build-machine (inherit harbourfront)
+    (system "i686-linux")))
+
+(define redhill
+  (build-machine
+    (name "redhill.guixsd.org")
+    (port 9022)
+    (system "armhf-linux")
+    (user "bayfront")
+    (host-key "ssh-ed25519 
AAAAC3NzaC1lZDI1NTE5AAAAIM+FYr1NUTsXrJgquSTMz0Izkqw3ob7pCU+JPFHgEhHa 
address@hidden")
+    (parallel-builds 3)
+    (speed 1.0)))
+ 
+(list
+  harbourfront
+  harbourfront-i686
+  redhill
+)
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]