guix-commits
[Top][All Lists]
Advanced

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

01/03: hydra: berlin: Add the second OverDrive.


From: Ludovic Courtès
Subject: 01/03: hydra: berlin: Add the second OverDrive.
Date: Thu, 26 Apr 2018 17:03:05 -0400 (EDT)

civodul pushed a commit to branch master
in repository maintenance.

commit e3464e6e87ce0a3d79e2f0a6cc2c2a678a3074c5
Author: Ludovic Courtès <address@hidden>
Date:   Thu Apr 26 22:58:23 2018 +0200

    hydra: berlin: Add the second OverDrive.
    
    * hydra/machines-for-berlin.scm (overdrive): New variable.
    (overdrive1): Remove.
    Append OVERDRIVE to the list of machines.
---
 hydra/machines-for-berlin.scm | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

diff --git a/hydra/machines-for-berlin.scm b/hydra/machines-for-berlin.scm
index 9238749..32c02b2 100644
--- a/hydra/machines-for-berlin.scm
+++ b/hydra/machines-for-berlin.scm
@@ -81,19 +81,29 @@
   (build-machine (inherit machine)
    (system "i686-linux")))
 
-(define overdrive1
+(define overdrive
   ;; The SoftIron OverDrive 1000 donated by ARM:
   ;; <https://softiron.com/development-tools/overdrive-1000/>.
-  (build-machine
-   ;; 91.160.117.201 or 2a01:e0a:1d:7270:af76:b9b:ca24:c465
-   (name "overdrive1.guixsd.org")
-   (port 52522)
-   (user "hydra")
-   (system "aarch64-linux")
-   (host-key
-    "ssh-ed25519 
AAAAC3NzaC1lZDI1NTE5AAAAIPf2f93c90oi9s9qGVGWC3sDgG7kEBvIEwR021NsfG+z 
address@hidden")
-   (parallel-builds 2)))
+  (list (build-machine
+         ;; 91.160.117.201 or 2a01:e0a:1d:7270:af76:b9b:ca24:c465
+         (name "overdrive1.guixsd.org")
+         (port 52522)
+         (user "hydra")
+         (system "aarch64-linux")
+         (host-key
+          "ssh-ed25519 
AAAAC3NzaC1lZDI1NTE5AAAAIPf2f93c90oi9s9qGVGWC3sDgG7kEBvIEwR021NsfG+z 
address@hidden")
+         (parallel-builds 2))
+
+        (build-machine
+         ;; 46.117.130.5
+         (name "git.flashner.co.il")
+         (port 52522)
+         (user "hydra")
+         (system "aarch64-linux")
+         (host-key
+          "ssh-ed25519 
AAAAC3NzaC1lZDI1NTE5AAAAIBNEy1ons+3F17Oh7dVKAjdQ6Z11fG2IbhUu6FUs9DQB 
address@hidden")
+         (parallel-builds 2))))
+
 
 (let ((x86_64 (map template-x86_64 hosts)))
-  (cons overdrive1
-        (append x86_64 (map x86_64->i686 x86_64))))
+  (append overdrive x86_64 (map x86_64->i686 x86_64)))



reply via email to

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