Since the machine running data.qa.guix.gnu.org doesn't currently have the disk space to generate dumps.
21 lines
687 B
Scheme
21 lines
687 B
Scheme
(use-modules (guix-data-service model git-repository)
|
|
(guix-data-service model build-server))
|
|
|
|
(specify-git-repositories
|
|
`(((id . 1)
|
|
(url . "https://git.guix.gnu.org/guix.git")
|
|
(link_url . "https://codeberg.org/guix/guix.git")
|
|
(poll_interval . 600)
|
|
(x_git_repo_header . "guix"))))
|
|
|
|
(specify-build-servers
|
|
`(((id . 1)
|
|
(url . "https://ci.guix.gnu.org/")
|
|
(systems-and-targets . (("x86_64-linux" . "")
|
|
("aarch64-linux" . ""))))
|
|
((id . 2)
|
|
(url . "https://bordeaux.guix.gnu.org/")
|
|
(systems-and-targets . (("x86_64-linux" . "")
|
|
("aarch64-linux" . "")))
|
|
(token-seeds . ("token1")))))
|
|
|