2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00
maintenance/hydra/machines-bayfront.scm
Andreas Enge df0369d41c
hydra: Add harbourfront and update details of the build machines behind
bayfront.

* hydra/harbourfront.scm, hydra/keys/ssh/bayfront.pub: New files.
* hydra/machines.rec: Add harbourfront, update domain name and port
of redhill.
* hydra/machines.rec: Update domain names.
2019-02-05 21:54:44 +01:00

30 lines
714 B
Scheme

(define harbourfront
(build-machine
(name "harbourfront.guix.info")
(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.guix.info")
(port 9022)
(system "armhf-linux")
(user "bayfront")
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+FYr1NUTsXrJgquSTMz0Izkqw3ob7pCU+JPFHgEhHa root@redhill")
(parallel-builds 3)
(speed 1.0)))
(list
harbourfront
harbourfront-i686
redhill
)