2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

hydra: berlin: Add the second OverDrive.

* hydra/machines-for-berlin.scm (overdrive): New variable.
(overdrive1): Remove.
Append OVERDRIVE to the list of machines.
This commit is contained in:
Ludovic Courtès 2018-04-26 22:58:23 +02:00
parent c0d3493597
commit e3464e6e87
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -81,19 +81,29 @@
(build-machine (inherit machine) (build-machine (inherit machine)
(system "i686-linux"))) (system "i686-linux")))
(define overdrive1 (define overdrive
;; The SoftIron OverDrive 1000 donated by ARM: ;; The SoftIron OverDrive 1000 donated by ARM:
;; <https://softiron.com/development-tools/overdrive-1000/>. ;; <https://softiron.com/development-tools/overdrive-1000/>.
(build-machine (list (build-machine
;; 91.160.117.201 or 2a01:e0a:1d:7270:af76:b9b:ca24:c465 ;; 91.160.117.201 or 2a01:e0a:1d:7270:af76:b9b:ca24:c465
(name "overdrive1.guixsd.org") (name "overdrive1.guixsd.org")
(port 52522) (port 52522)
(user "hydra") (user "hydra")
(system "aarch64-linux") (system "aarch64-linux")
(host-key (host-key
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf2f93c90oi9s9qGVGWC3sDgG7kEBvIEwR021NsfG+z root@overdrive") "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf2f93c90oi9s9qGVGWC3sDgG7kEBvIEwR021NsfG+z root@overdrive")
(parallel-builds 2))) (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 root@linux")
(parallel-builds 2))))
(let ((x86_64 (map template-x86_64 hosts))) (let ((x86_64 (map template-x86_64 hosts)))
(cons overdrive1 (append overdrive x86_64 (map x86_64->i686 x86_64)))
(append x86_64 (map x86_64->i686 x86_64))))