maintenance/hydra/machines-bayfront.scm

56 lines
1.3 KiB
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 milano
(build-machine
(name "milano-guix-1.di.unimi.it")
(system "x86_64-linux")
(user "bayfront")
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPJFpBJSaOK2aDaR48Fm8udhLK9fl5YwNlq43uaLBeRv root@(none)")
(parallel-builds 3)
(speed 1.0)))
(define milano-i686
(build-machine (inherit milano)
(system "i686-linux")))
(define dover
(build-machine
(name "dover.guix.info")
(port 9023)
(system "aarch64-linux")
(user "bayfront")
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJLRYD5RXZ3Espe+Kv1SzZl8Qc3NZ356Bq+cGjnKsDHY root@linux")
(parallel-builds 3)
(speed 1.0)))
(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
milano
milano-i686
dover
redhill
)